$(document).ready(function () {
	$('#main').after('<div class="snav"><ul id="pager">').cycle({ 
			fx: 'fade', 
			slideExpr: 'div.slide',
			speed:  2000, 
			timeout: 8000,
			pager:  '#pager'
		}).after('</ul></div>');
	$('#slider').cycle({ 
		fx: 'fade', 
		slideExpr: 'div.slide',
		speed: 2000,
		timeout: 4000
	});
	$('.box').hover(function(){
		$(".cover", this).stop().animate({top:'117px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
	});
});

