$(window).load(function() {
	$('#slider').nivoSlider({
		effect:'random',
		slices:10,
		animSpeed:500, 
		pauseTime:3000,
		startSlide:0,
		directionNav:true,
		directionNavHide:true,
		controlNav:true,
		keyboardNav:true, 
		pauseOnHover:true, 
		manualAdvance:false, 
		captionOpacity:0.7, 
		beforeChange: function(){},
		afterChange: function(){},
		slideshowEnd: function(){}
	});
});

$(document).ready(function(){	
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'60px'},{queue:false,duration:160});
		}, function() {
		$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
	});
});
