$(document).ready(function(){
	$('div.modelki div.model')
		.mouseover(function(){

            $(this).find("img").stop().animate({opacity: 0.35   }, {duration:400})   
            
                     
            $(this).find("a").css("color", "#000");  


		})
		.mouseout(function(){
            $(this).find("img").stop().animate({opacity: 1   }, {duration:400})     
       		$(this).find("a").css("color", "#919191"); 
      
		})

		
});


