IE='\v'=='v';

function  getPageSize(){

	if (self.innerHeight) { // all except Explorer
		windowWidth = self.innerWidth;
		windowHeight = self.innerHeight;
	} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
		windowWidth = document.documentElement.clientWidth;
		windowHeight = document.documentElement.clientHeight;
	} else if (document.body) { // other Explorers
		windowWidth = document.body.clientWidth;
		windowHeight = document.body.clientHeight;
	}

}



/* ------------------------------------------------------------ */



$(window).load(function () {
//$(document).ready(function () {
getPageSize();
if (windowWidth < 1000) $("#totus").css({left:500});
else $("#totus").css({left:"50%"});
if (windowHeight < 590) $("#totus").css({top:295});
else $("#totus").css({top:"50%"});



$(window).resize(function(){
getPageSize();
if (windowWidth < 1000) $("#totus").css({left:500});
else $("#totus").css({left:"50%"});
if (windowHeight < 590) $("#totus").css({top:295});
else $("#totus").css({top:"50%"});
});

$("#mesoexpert").mouseenter(function(){
$("#mesoexpert").css("border","1px solid #8f3283");
$("#mesoexpert").css({"top":"532px","left":"246px"});
});

$("#mesoexpert").mouseleave(function(){
$("#mesoexpert").css("border","none");
$("#mesoexpert").css({top:"533px","left":"247px"});
});

});
