// sliding boxes and captions with Jquery
// march 2009
// By Sam Dunn
// www.buildinternet.com / www.onemightyroar.com
// lightly modified by Alex Jacque for taubmancollege.umich.edu

$(document).ready(function(){
	//Horizontal Sliding
	$('.boxgrid.slideright').hover(function(){
		$(".cover", this).stop().animate({left:'-290px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
	});
});