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