$(document).ready(function(){

	var myTimer = {};


	function startSlide(el){
		
		// Set the timer for 2 seconds
		myTimer = $.timer(700,function(){

		
			$(el).children("p, a").show(500);
			$(el).animate({
				top: '145px'
			}, 500, function() {

			});


			// Optional function to call when timer is canceled
		},function(){

			$(el).children("p, a").hide(500);
			$(el).animate({
				top: '238px'
			}, 500, function() {

			});

		});
	}








	$(".slider").hover(function(){
		startSlide(this);

	}, function(){

		$.clearTimer(myTimer);

	});





});