function loadBackground() {
	
	//If the browser isn't IE or is newer than IE 6
	if(!($.browser.msie) || $.browser.version >= 7) {
	
		//Add the background
		$('body').prepend('<div id="background"></div>');
	
		//Loop all the banner files and load the images
 		var backgroundImg = new Image();
  				
		$(backgroundImg)
			//on image load
			.load(function() {
				//Set the image width
				$(this).width(screen.width);
  	  					
				//Add the image to the background
				$('#background').append(this);
  	  					
				//Set the background height
				$('#background').height($(document.body).height());
  		  					
				//Fade in the background
				$('#background').fadeIn();
			})
  	  
			//If there was an error loading
			.error(function() {
			})
  	  				
			//Set the image source attribute
			.attr('src', '../../images/bgImg_2.jpg');
	}
}

//On complete loading update background height
$(window).load(function() {
	$('#background').height($(document.body).height());
});
