jQuery(document).ready(
	function($){
	
	setTimeout(
		$('#masthead').css({
			'width': $('#content').css('width')
		})
	, 1000);

	$('.post>a').hover(function(){
		$(this).children('img').stop().animate({"opacity": 0.6}, 300);
	},function(){
		$(this).children('img').stop().animate({"opacity": 1}, 200);
	});

});
