$(document).ready(function(){
	$('#form select').change(function(){
	  $('#form').submit();
	});
	
	
	$('#flash-mod').hide();
	wait = false;
	
	function move(){
		$('#page').show();
		$('#image').show();
		$('#flash-mod').hide();
		waiting(10000);
			
		return false;	
	}
	
	function waiting(time){
		if(wait == false){
			wait = window.setTimeout(nothing,time);
		}
	}
	
	function nothing(){
		clearTimeout(wait);
		$('#page').hide();
		$('#image').hide();
		$('#flash-mod').show();		
		$('html').mousemove(function(){
			move();
		});	
		wait = false;
	}
	move();
});
