$(document).ready(function()
{
    var docHeight = $(document).height();

	reloadStripes();
	
function reloadStripes()
{
	$('#stripesTopVertical').css({
		"position": "absolute",
		"top": "0px",
		"height": docHeight + "px",
		"margin": "0px",
		"left": "50%",
		"margin-left": "-449px",
		"width": "901px",
		"background-repeat": "repeat-y",
		"background-image": "url(./images/bgTop.png)",
		"z-index": 0
	});
	
	$('#stripesBottomAfterFooterHorizontal').css({
		"position": "absolute",
		"min-height": "1px",
		"top": (docHeight - 103) + "px",
		"margin": "0px",
		"width": "100%",
		"background-image": "url(./images/bgStripesLeftRight.png)",
		"z-index": 0
	});	
}



	$(window).bind("reload", function()
	{
		reloadStripes();
	});

 
});

