$(document).ready(function(){
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute			
	//Caption Sliding (Partially Hidden to Visible)
	$('.intro-cat-item').hover(function(){
		$(".intro-cat-caption", this).stop().animate({top:'0'},{queue:false,duration:320});
	}, function() {
		$(".intro-cat-caption", this).stop().animate({top:'130px'},{queue:false,duration:320});
	});
});
