/*

*/

var background = new Image();
var ar;
$(document).ready(function(){
	background.src = $('body').attr('background');
	$('body').attr('background', '');
		
	$('body').html('<img id="backgroundImage" src="'+background.src
		+'" style="position:absolute; top:0; left:0; z-index:-1;"/>'+$('body').html());
	resizeBg();
	$(window).resize(function(){
		resizeBg();
	});
	
	function resizeBg(){
		if($(window).width() / background.width > $(window).height() / background.height){
			$('#backgroundImage').attr('width', $(window).width());
			$('#backgroundImage').removeAttr('height');
		}else{
			$('#backgroundImage').attr('height', $(window).height());
			$('#backgroundImage').removeAttr('width');
		}
	}
});
