$(document).ready(function(){ 
$('#cloud-02').css({backgroundPosition: '0 0px'});
$('#reho').css({left:'1962px'});
$('#highway1').css({left:'3905px'});
$('#lewes').css({left:'5866px'});
$('#home').css({left:'0px'});
$('#wrapper').css({overflow: 'hidden'});

	
	$('#loc1').click(function(){
		if (!$('#cloud-02').parent().children().is(':animated')) {
			
	    	$('#cloud-02').animate({backgroundPosition: '(-1962px 0px)'}, 3500);
	
			startHim();
		
			$('#full-robot').animate({left:"0%",marginLeft:"910px"}, 2000);
			setTimeout('leaveScreen()',900);
			
			$('#reho').animate({left:'0px',top:'0px'}, 3500);
			$('#highway1').animate({left:'1943px',top:'0px'}, 3500);
			$('#lewes').animate({left:'3904px',top:'0px'}, 3500);
			$('#home').animate({backgroundPosition: '(0px 0px)'}, 3500);
			}
		
		return false;
	
	});

		
	$('#loc2').click(function(){
  		if (!$('#cloud-02').parent().children().is(':animated')) {

			$('#cloud-02').animate({backgroundPosition: '(-3905px 0px)'}, 3500);
	
			startHim();
	
			$('#full-robot').animate({left:"0%",marginLeft:"910px"}, 2000);
			setTimeout('leaveScreen()',2000);
	
			$('#reho').animate({left:'-1943px',top:'0px'}, 3500);
			$('#highway1').animate({left:'0px',top:'0px'}, 3500);
			$('#lewes').animate({left:'1961px',top:'0px'}, 3500);
			}
		
		return false;
	
	
	
	});
	
	
	
	$('#loc3').click(function(){
		if (!$('#cloud-02').parent().children().is(':animated')) {
			
			$('#cloud-02').animate({backgroundPosition: '(-5866px 0px)'}, 3500);
			
			startHim();
	
			$('#full-robot').animate({left:"0%",marginLeft:"910px"}, 2000);
			setTimeout('leaveScreen()',2000);
		
			$('#reho').animate({left:'-3904px',top:'0px'}, 3500);
			$('#highway1').animate({left:'-1961px',top:'0px'}, 3500);
			$('#lewes').animate({left:'-0px',top:'0px'}, 3500);
			$('#home').animate({backgroundPosition: '(0px 0px)'}, 3500);
			}
		
		return false;
	});
	
	
	$('#home').click(function(){
		if (!$('#cloud-02').parent().children().is(':animated')) {
			
			$('#cloud-02').animate({backgroundPosition: '(0px 0px)'}, 3500);
			
			startHim();
	
			$('#full-robot').animate({left:'.5%',marginLeft:'0px'}, 4000);
			setTimeout('begScreen()',2500);		
			
			$('#reho').animate({left:'1962px',top:'0px'}, 3500);
			$('#highway1').animate({left:'3905px',top:'0px'}, 3500);
			$('#lewes').animate({left:'5866px',top:'0px'}, 3500);
			$('#home').animate({backgroundPosition: '(0px 0px)'}, 3500);
			}
		
		return false;
	});
			
});
	
	
	
	
	var num = 1;
function startHim(){
		num++;
		if(num<4){
		setTimeout('startHim()',300);
	}
}

function leaveScreen(){
	$('#full-robot').animate({left:"100%",marginLeft:"500px"}, 1000);
}

function begScreen(){
	$('#full-robot').animate({left:'.5%',marginLeft:'0px'}, 1000);
}