jQuery(document).ready(function(){
	
	//portfolio hover	
	jQuery(function() {
		jQuery('.thumbnail').hover(function(){	
			jQuery('.thumbnail').not(this).stop(true,true).css({"opacity":"0.5"});
		}, function(){
			jQuery('.thumbnail').delay(300).stop(false,true).css({"opacity":"1"});
		});
	});
	
	
	jQuery(function() {	
 		jQuery(".apanelheader a").click(function () { 
 			jQuery(this).parents(".apanelcontainer").find(".apanel").animate({"height":"toggle"}, 600);				
		});
	});
	
	
});










