$/*(document).ready*/(function(){
	// banner cycle animation
	$("#homepage_slideshow .slides").cycle({
		fx: "fade",
		speed: 800,
		timeout: 8000,
		pager: $("#homepage_slideshow #slide-nav"),
	});
	$("#homepage_slideshow .slides").hover(function() {
		$(this).cycle("toggle");
	})
	
	// pillar reveal animation
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'0'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'-160px'},{queue:false,duration:160});
	});
});

