$(document).ready(function(){

	$(".fishtail").fadeTo("fast", 0.3);	
	
	$(".fishtail").hover(function(){

		$(this).animate({ 
			opacity: 1.0
		}, 500);
			},
			
		function(){
		$(this).animate({ 
			opacity: 0.3
		}, 500);
	});


 

	// All Rollovers
	$("img.rollover").hover(
			function()
			{
				this.src = this.src.replace("_off","_on");
			},
			function()
			{
				this.src = this.src.replace("_on","_off");
			}
		);
		

});
