
function  getPageSize(){

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

}


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



//$(window).load(function () {
$(document).ready(function () {

getPageSize();
if (windowWidth < 960) $("#totus").css({left:480});
else $("#totus").css({left:"50%"});
if (windowHeight < 576) $("#totus").css({top:288});
else $("#totus").css({top:"50%"});



$(window).resize(function(){
getPageSize();
if (windowWidth < 960) $("#totus").css({left:480});
else $("#totus").css({left:"50%"});
if (windowHeight < 576) $("#totus").css({top:288});
else $("#totus").css({top:"50%"});
});


});
