﻿$(document).ready(function(){
	setTimeout(function(){
		var window_widht = $(window).width();
		$('#base_logo').width(window_widht);
		$('#nav').css('marginLeft',($('.content').width()-$('#nav').width()) - 10);
		$('#post_content_shadow_left').height($('#post_content_bg').height());
		$('#post_content_shadow_right').height($('#post_content_bg').height() + $('#post_content_head').height());
	},1000)
});

