$(document).ready(function (){    
   
    $(".portfolio_col").hover(function() {	 
	
    $('img',this).animate({"opacity": "0.6"}, 400);
    $('h2 ',this).css({ 'color': "#00aeef"}, 400); 
	$('a',this).css({ 'color': "#00aeef"}, 400); 

},
function() {
	
    $('img',this).animate({"opacity": "1"}, 400);
    $('h2',this).css({ 'color': "#333333"}, 400);
	$('a',this).css({ 'color': "#333333"}, 400);

});	
});
 
    
   
   
