// ********** YouResizer
jQuery(function($) {
		$(document).ready(function(){
				var footer_offset = $("#Footer").offset();
				var bcg_offset = $("#bottom_background").offset();
				var shadow_offset = $("#bottom_content_shadow").offset();
				var shadow_height = $("#bottom_content_shadow").height();
				var top = footer_offset.top-shadow_height;
				var height = footer_offset.top - bcg_offset.top;
				$("#bottom_content_shadow").css({"top":top});
				$("#bottom_background").css({"height":height});
		});
});

