function move_header() {	var windowWidth = 0;	var windowHeight = 0;	if (self.innerHeight) {		if(document.documentElement.clientWidth){			windowWidth = document.documentElement.clientWidth; 		} else {			windowWidth = self.innerWidth;		}		windowHeight = self.innerHeight;	} else if (document.documentElement && document.documentElement.clientHeight) {		windowWidth = document.documentElement.clientWidth;		windowHeight = document.documentElement.clientHeight;	} else if (document.body) {		windowWidth = document.body.clientWidth;		windowHeight = document.body.clientHeight;	}	if (windowWidth > 1000) {		leftHeader = '-'+(2000-windowWidth)/2+'px';		widthHeader = (2000-windowWidth)/2+windowWidth+'px';				if ($('.wrapper').css('maxWidth') == '1280px') {			leftHeader = '-'+(2000-windowWidth)/2-100+'px';			widthHeader = (2000-windowWidth)/2+windowWidth+100+'px';		}		$('#header').css('left',leftHeader).css('width',widthHeader);		$.cookie('leftWidthHeader', leftHeader+'-'+widthHeader, {			expires: 365,			path: "/"		});			}	/* var l = $('div#left').height(); var c = $('div#central').height(); var r = $('div#right').height(); var m = 0;	if(l>c){if(l>r){m=l;}else {m=r;}}else{if(c>r){m=c;}else{m=r;}}	var subtract = $('div.header').outerHeight(true) + $('div.footer').outerHeight(true) + 6;	if(m < windowHeight - subtract) m = windowHeight - subtract; $('div#left, div#central, div#right').css('height',m+'px'); */}
