//Показываем фон
function init_opel_bg() {
	var rnd=Math.round((Math.random()*100000));
	$('head').append('<link rel="stylesheet" media="all" type="text/css" href="/css/opel_132.css?'+rnd+'"/>');
	
	function setleftright(){
		var w=window.opera?document.documentElement.clientWidth:document.body.clientWidth;
		var h= $(document).height();
		var tmp_w = Math.round((w-1040)/2);
		$('#opelbrandleft').attr('style','width:'+tmp_w+'px;height:'+h+'px;').prependTo($(document.body))
		$('#opelbrandright').attr('style','width:'+tmp_w+'px;left:'+(w-tmp_w)+';height:'+h+'px;').prependTo($(document.body), 'top');
	}
	var resizeTimer = null;
	$(window).bind('resize', function() {
	    if (resizeTimer) clearTimeout(resizeTimer);
	    resizeTimer = setTimeout(setleftright, 500);
	});
	
	function setscrolltop(){
		$('#opelbrand').attr('css','top: '+$(window).scrollTop());
	}
	var scrollTimer = null;
	$(window).bind('scroll', function() {
	    if (scrollTimer) clearTimeout(scrollTimer);
	    scrollTimer = setTimeout(setscrolltop, 500);
	});
	
	$(document.body).append('<a id="opelbrand" href="javascript:void(0)" onclick="show_opel_div()"></a>');

	var w=window.opera?document.documentElement.clientWidth:document.body.clientWidth;
	var h = $(document).height();
	var tmp_w = Math.round((w-1040)/2);
	
	$(document.body).prepend('<a id="opelbrandleft" href="javascript:void(0)" onclick="show_opel_div()" style="width:'+tmp_w+'px;height:'+h+'px"></a>');

	
	$(document.body).prepend('<a id="opelbrandright" href="javascript:void(0)" onclick="show_opel_div()" style="width:'+tmp_w+'px;left:'+(w-tmp_w)+';height:'+h+'px"></a>');
	

	
}
//ПОказ фулскрина
var showopeldiv=false;
function show_opel_div(){
	if(!showopeldiv){
		var showopeldiv=document.createElement('div');
		showopeldiv.id = "opeldiv";
		showopeldiv.className = "opeldiv";
		showopeldiv.style.width = "100%";
		$(document.body).append(showopeldiv);

		$(showopeldiv).append('<object type="application/x-shockwave-flash" data="/flash/panel2.swf" width="100%" height="984"><param name="movie" value="/flash/panel2.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><param name="play" value="true" /><param name="loop" value="true" /><param name="wmode" value="transparent" /><param name="scale" value="showall" /><param name="menu" value="true" /><param name="devicefont" value="false" /><param name="salign" value="" /><param name="allowScriptAccess" value="sameDomain" /></object>');

	}
}
//Закрытие фулскрина
function close_opel_div(){
	
	$("#opeldiv").detach();
}
