$(function(){
	$(".banners li").hover(function(){
		$(this).find(".description").slideDown(300);
	}, function(){
		$(this).find(".description").slideUp(300);
	});
});
