
// JavaScript Document - jquery

jQuery(document).ready(function(){
		
		jQuery('.fade').mouseenter(function() {
		    jQuery(this).animate({opacity: 0.6}, 100);
		}); 
		
		jQuery('.fade').mouseleave(function() {
		    jQuery(this).animate({opacity: 1}, 100);
		});	
});



