$(function(){
	$('.slideable .wrapper').hover(
		function(){
			$("img.slide", this).stop().animate({top:"-192px"},{queue:false,duration:300});
		},
		function(){
			$("img.slide", this).stop().animate({top:"0px"},{queue:false,duration:300});
		}
	);
	$('.slideLink').click(function(){
		$(this).next('.slideContent').slideToggle();
		return false;
	});
});
