////////////////////////////////////////////////////////////////////////////////

// sportsontap.js 

//



	$(document).ready(function() {

	

		// Flash

		$(".flash").each( function() {

		

			var rel = $(this).attr( "rel" );

				rel = rel.split( "||" );

			

			$(this).flash({

				src: rel[1],

				width: rel[2],

				height: rel[3],

				wmode: "transparent",

				flashvars: { host: rel[0] }

			});

		});

		

		// Menu

		$(".menu img").hover(

			function() { $(this).attr( "src", $(this).attr( "src" ).replace( ".png", "_over.png" ) ); },

			function() { $(this).attr( "src", $(this).attr( "src" ).replace( "_over.png", ".png" ) ); }

		);

		$(".smenu img").hover(

			function() { $(this).attr( "src", $(this).attr( "src" ).replace( ".png", "_over.png" ) ); },

			function() { $(this).attr( "src", $(this).attr( "src" ).replace( "_over.png", ".png" ) ); }

		);

		$("#coasters img").hover(

			function() { $(this).attr( "src", $(this).attr( "src" ).replace( ".jpg", "_over.jpg" ) ); },

			function() { $(this).attr( "src", $(this).attr( "src" ).replace( "_over.jpg", ".jpg" ) ); }

		);

	

	});	

	

//

////////////////////////////////////////////////////////////////////////////////
