$(window).load(function(){
	$('div.description').each(function(){
		$(this).css('opacity', 0.75);
		$(this).css('width', $(this).siblings('img').width());
		$(this).parent().css('width', $(this).siblings('img').width());
		$(this).css('display', 'block');
	});
	$('div.banner a').hover(function(){
		$(this).children('.description').stop().fadeTo(300, 0.95);
	},function(){
		$(this).children('.description').stop().fadeTo(300, 0.75);
	});
});
