$(document).ready(function(){var BGImageArray=["bg1.jpg","bg2.jpg","bg3.jpg","bg4.jpg","bg5.jpg","bg6.jpg","bg7.jpg","bg8.jpg","bg9.jpg"];var lastImage
function changeBackground(){var BGImage=BGImageArray[Math.floor(Math.random()*BGImageArray.length)];while(BGImage==lastImage){BGImage=BGImageArray[Math.floor(Math.random()*BGImageArray.length)];}
lastImage=BGImage;$("body").ezBgResize({img:"images/"+ BGImage,opacity:1,index:-1,center:true});$("#bg").fadeOut(800,function(){$(this).remove();});}
changeBackground();if($.browser.msie&&parseInt($.browser.version)<=8){}else{window.setInterval(changeBackground,4000);}});
