
// JavaScript Document



$(document).ready(function(){
						  
						   $(".fade").hover(function(){
						   $(this).fadeTo(100, 0.6); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo(500, 1); // This should set the opacity back to 30% on mouseout
							   	});
						   });
					// Element that you're addressing should be block ! IE8 issue //
					
					
					
	


