$(document).ready(function(){$("#account_background").css({"background-color":backgroundColors[currentScheme][Math.floor(Math.random()*currentSchemeLength)]});$("a").css("color",backgroundColors[currentScheme][0]);for(var a=0;a<400;a++){boxColumn=(a%20)*(125);boxRow=Math.floor(a/40)*(125);$("#account_background").append("<div class='background_box' id='background_box_"+a+"'></div>");$("#background_box_"+a).css({"background-color":backgroundColors[currentScheme][Math.floor(Math.random()*currentSchemeLength)],left:boxColumn,top:boxRow})}$(window).bind("resize",function(){resizeWindow(".container")});resizeWindow(".container")});function resizeWindow(c){var a=($(window).width()-$(c).width())-250;var b=(Math.round(a/125))*125;$(c).css({left:b})};