jQuery(document).ready(function(){
	jQuery("a[rel='portfolio']").colorbox({maxWidth:'100%', maxHeight:'100%'});

	//Caption Sliding (Partially Hidden to Visible)  
	jQuery('.boxgrid.caption').hover(function(){  
			jQuery(".cover", this).stop().animate({top:'140px'},{queue:false,duration:160});  
		}, function() {  
			jQuery(".cover", this).stop().animate({top:'185px'},{queue:false,duration:160});  
	});
});
