var bgimg_origWratio,bgimg_origHratio,fullbgtimer,firsttimebg;
firsttimebg=true;
$(function(){if($("#background").length>0){var a=$("#background");
bgimg_origWratio=a.height()/a.width();
bgimg_origHratio=a.width()/a.height();
resizeImg();
$(window).resize(function(){clearTimeout(fullbgtimer);
fullbgtimer=setTimeout("resizeImg()",2000)})}});
function resizeImg(){var c=$("#background");
var a=$("div.fullBg");
var j=c.width();
var h=c.height();
var b=0;
var i=0;
var f=$(window).width();
var d=$(window).height();
a.css({width:f+"px",height:d+"px"});
var e=f;
var g=f*bgimg_origWratio;
if(g<d){var g=d;
var e=d*bgimg_origHratio;
b=e-f}if(b>0){b=Math.floor(b/2).toString();
b="-"+b}i=g-d;
b = 0;
if(i>0){i=Math.floor(i/3).toString();
i="-"+i}if(firsttimebg){firsttimebg=false;
c.css({width:e+"px",height:g+"px",left:b+"px",top:i+"px"})}else{c.animate({width:e+"px",height:g+"px",left:b+"px",top:i+"px"},800)}};

