$(document).ready(function(){
	/*	General	*/
	$('img.fade_img').hover(
		function() {
			$(this).animate({	opacity: 0.5}, 250);
		},
		function() {
			$(this).animate({	opacity : 1.0 }, 500);
		}
	);	
	
});
