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


function  getPageSize(){

windowWidth = document.compatMode=='CSS1Compat'?document.documentElement.clientWidth:document.body.clientWidth;
windowHeight = document.compatMode=='CSS1Compat'?document.documentElement.clientHeight:document.body.clientHeight;

}



function  totus_move() {
getPageSize();
if (windowWidth < 1000) $("#totus").css({left:500});
else $("#totus").css({left:"50%"});
if (windowHeight < 600) $("#totus").css({top:300});
else $("#totus").css({top:"50%"});
}

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



$(document).ready(function () {
});




$(window).load(function () {
						 
totus_move();


$(window).resize(function(){
totus_move();
});



});
