function setRescaleTimer(){
	this.rescaleTimer = setInterval( function(){
			scaleBackground();
		} , 10 );
}

function scaleBackground(){
	/*if( !($('#backgroundImage').width() == $(window).width() && $('#backgroundImage').height() == $(window).height()) ){
		$('#backgroundImage').width( $(window).width() );
		$('#backgroundImage').height( $(window).height() );
	}*/	
}