$(document).ready(function(){
	$('nav').stickyfloat({duration: 500, offsetY:30});	
	
	//portfolio mouse over animations
	$('.portfolio-piece').hover(function(){			
		$(".info", this).stop().animate({top:'0px'},{queue:false,duration:300});  
		}, function() {  				
		$(".info", this).stop().animate({top:'260px'},{queue:false,duration:200}); 
	});
});
