// hover slider

$(function(){
	$("#container div a.img-slide").hover(function(){
		$("img", this).stop().animate({top:"-322px"},{queue:false,duration:200});
	}, function() {
		$("img", this).stop().animate({top:"0px"},{queue:false,duration:200});
	});
});
