var h;

$(document).ready(function() {
	h = $(document).height();
	$('#bgContainer').height(h);
	var time= (new Date()).getTime();
	var swfPath = "../../../main.swf?noCache=" + time;
	swfobject.embedSWF(swfPath, "bgContent", "100%", "100%", "9.0.0", '', {}, {wmode: 'transparent'});
});

function setBgContainerHeight(e) {
	if($('#container').height() > $(window).height()) {
		h = $(document).height();
	}
	else {
		h = $(window).height();
	}
	$('#bgContainer').height(h);
}

function callFunc() {
	//var doc= document["bgContent"];
	var doc = document.all? window["bgContent"] : document["bgContent"];
	doc.setContentsHeight(h);
}

$(window).bind("resize", setBgContainerHeight);

