// JavaScript Document
$(document).ready(function(){
		
		$("#nav ul.topnav li:last").css("background","none");
		
		$("#house").animate({
			top: '44'
		}, 1000, "easeOutCubic", function() {
			
			$("#checklist").animate({
				left: '372',
				top: '25'
			}, 400, "easeInOutExpo", function() {
				$("#checklist").css("z-index","49");
				$("#bc_general").stop().animate({
					left: '0'
				}, 1000, "easeInOutExpo", function() {
					// Animation complete.
				});
				$("#bc_general").next(".bc_estimate").stop().animate({
					right: '20'
				}, 1000, "easeInOutExpo", function() {
					// Animation complete.
				});
			});
		});
		
		$("#grass").animate({
			bottom: '0'
		}, 1000, "easeInOutExpo", function() {
			// Animation complete.
		});
		
		$("#phone_area").animate({
				right: '0'
			}, 1000, "easeInOutExpo", function() {
				$("#int_special_offer").animate({
					right: '0'
				}, 1000, "easeInOutExpo", function() {
					$("#int_special_arrow").animate({
						height: '108'
					}, 1000, "easeInOutExpo", function() {
						// Animation complete.
					});
				});
			});
		
		$("#logo").animate({
			top: '13'
		}, 1000, "easeOutBounce", function() {
			// Animation complete.
		});
		
		
		$('.slider-item').prepend('<img class="item-screen" src="img/item-screen.png" width="112" height="73" />');
		
		
		
		
});
