var curleft = 0;
var curtop = 0;

function getwindowsize() {
if (navigator.userAgent.indexOf("MSIE") > 0) {
var sSize = (document.body.clientWidth * document.body.clientHeight);
return sSize;
} else {                                                
var sSize = (window.outerWidth * window.outerHeight);
return sSize;
}
return;      
}

function getPosition(objpos){
	if (objpos.offsetParent) {
		curleft = objpos.offsetLeft;
		curtop = objpos.offsetTop;
		while (objpos = objpos.offsetParent) {
			curleft += objpos.offsetLeft;
			curtop += objpos.offsetTop;
		}
	}
}
var curwidth = 0;
var curheight = 0;
function pageWidth() {
	curwidth = window.innerWidth != null ? 
	window.innerWidth : document.documentElement && document.documentElement.clientWidth ? 
	document.documentElement.clientWidth : document.body != null ? 
	document.body.clientWidth : null;
}
function pageHeight() {
	curheight = window.innerHeight != null ? 
	window.innerHeight : document.documentElement && document.documentElement.clientHeight ?  
	document.documentElement.clientHeight : document.body != null ? 
	document.body.clientHeight : null;
}
var runtimeout = 0;


function positionImages(){ 
	pageWidth();
	pageHeight();
	getPosition(document.getElementById("Logo-Position"));

	var Logocontainer = curleft - 55;
//	var DevLogocontainer = curleft - 15;	
	
	document.getElementById("Logocontainer").style.left = Logocontainer + 'px';
//	document.getElementById("DevLogocontainer").style.left = Headercontainer + 'px';	
	
}



