// JavaScript Document
$(document).ready(function(){
	
	$buildingup = false;
	
	$("#sliders>*").show();
			
	
	//Blurs all links when clicked

	

	
	$(this).delay(100,function(){
		
		//Show the elements	
		$(".pepper1").stop().animate({top:'0px'}, {queue:false, duration:2000, easing: 'easeInOutBack'});
		$(".pepper2").stop().animate({top:'10px'}, {queue:false, duration:3000, easing: 'easeInOutBack'});
		$(".arrow").stop().animate({top:'-50px'}, {queue:false, duration:1500, easing: 'easeInOutBack'});
		$buildingup = true;	
		
    });
	 
});
