/* Image Sliders */
$(document).ready(function(){

	//Horizontal Sliding
	$('.boxgrid.slideright').hover(function(){
		$(".cover", this).stop().animate({left:'-468px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({left:'-0px'},{queue:false,duration:300});
	});
	$('.boxgrid.slideleft').hover(function(){
		$(".cover", this).stop().animate({left:'468px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
	});
});
/* End Image Sliders */

