jQuery(document).ready(function(){
	
	// Recently Snap
	
	jQuery(".recent_pic img,img.transparency").animate({opacity: 1.0}, 100);
	
	jQuery(".recent_pic img,img.transparency").hover(function() {
		jQuery(this).animate({opacity: 0.5}, 300);
	}, function() {
		jQuery(this).animate({opacity: 1.0}, 300);
	});
	
});

