$(function(){
   $('#fm').prepend($('#banner-text'));
   $('.sidebox:last').css('background-image','url(images/none.gif)');
   $('#footer ul li:last').css('border', 'none');
   $('#navigation li:last').attr('id', 'close-up');
   $('p').each(function(i){
        if(!$(this).html()) $(this).remove();
    });
   
   /**Browsers issues here**/
	
	/** safari 4, mozilla firefox < 3 **/
   var bug = false;
   if($.browser.safari && !$.browser.chrome){
      bug = true;
	}
   if($.browser.mozilla && $.browser.version < 3){
      bug = true;
   }
   if(bug){
      $('#header, #banner').css({left:'1px', position:'relative'});
   }   
   
	$("img[src='i/x.gif']").hide();
});
