$(document).ready(function(){

	$("#recordList li:last").addClass("lastItem");
	$("#pressList li:last").addClass("lastItem");

 	var resizeBg = function(){ 
     var h = self.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; 
     var w = self.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
     var elem = document.getElementById('backgroundImage'); 
     if(w > h){ 
             elem.width = w; 
             elem.height = h; 
     }else{ 
             elem.height = h; 
             elem.width = w; 
     } 
   } 

	resizeBg();

	if (!navigator.userAgent.match(/iPhone/i)) {

		$("#container").wrap('<div id="wrap"></div>');
	
		$("#backgroundImage").load(function(){
			resizeBg();
		});
	
		$(window).resize(function() { 
			resizeBg();
		});
		
	}
	
	$("#container").append('<div class="clear"></div>');
	
});

