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

	$('#s2').cycle({fx:'fade', timeout: 3000, speed: 800});
	$('#s2').cycle('pause');
	
	$('#s2').hover(
		function(){
			$(this).cycle('resume');
		}, 
		function() {
			$(this).cycle('pause');
			alert
		}
	);		

	$('#s3').cycle({fx:'fade', timeout: 3000, speed: 800});
	$('#s3').cycle('pause');
	
	$('#s3').hover(
		function(){
			$(this).cycle('resume');
		}, 
		function() {
			$(this).cycle('pause');
			alert
		}
	);		
});

