
/* image on mouse over */

jQuery(document).ready(function(){
	
	// Recently Snap
	
	jQuery(".imgover,transparency").animate({opacity: 1.0}, 100);
	
	jQuery(".imgover,transparency").hover(function() {
		jQuery(this).animate({opacity: 0.6}, 350);
	}, function() {
		jQuery(this).animate({opacity: 1.0}, 180);
	});
	
});

