// JavaScript Document

function wrapNice(){
	var allNice = $$('#sidebars li.widget');
	for(var d=0;d<=allNice.length;d++){
		if(allNice[d]){
			allNice[d].update('<img src="/wp-content/themes/thesis/custom/images/side_block_top.jpg" class="niceTop" /><img src="/wp-content/themes/thesis/custom/images/side_block_bottom.jpg" class="niceBottom" /><div class="niceContent">'+allNice[d].innerHTML+'</div>');
		}
	}
}

function simplePreload()
{ 
  var args = simplePreload.arguments;
  document.imageArray = new Array(args.length);
  for(var i=0; i<args.length; i++)
  {
    document.imageArray[i] = new Image;
    document.imageArray[i].src = args[i];
  }
}
simplePreload( '/wp-content/themes/thesis/custom/images/side_block_top.jpg', '/wp-content/themes/thesis/custom/images/side_block_bottom.jpg' );


function login(){
	document.location = '/wp-admin/';
}

//FUNCTION LAUNCHER
Event.observe(window, 'load', function() {
	wrapNice();
	Event.observe('george', 'click', login);
});