$(document).ready(function() { 
		  			
	 $('.model a').hover(
									   
									   function() {
											$(this).children('img').animate({ opacity: "1" }, "fast");
												},
												
										function() {
											$(this).children('img').animate({ opacity: "0.9" }, "slow");
								});
			
			
					
});




	
			


		

