// JavaScript Document
	function switchScene(pic){
		$('#scene').fadeOut(500,function(){
			$('#scene').css({backgroundImage: 'url(images/bg/'+pic+'.jpg)'});
			$('#scene').fadeIn(500);
			$('#scene').show();
		
		});
	}