$(function () {
	
	$('h1').fadeIn(400, function() {
		$('#menu').fadeIn(400, function() {
			$('#slider').fadeIn(400, function() {
				$("#slider").easySlider({
					auto: true, 
					continuous: true,
					numeric: false,
					pause: 6000
				});
				$("#prevBtn").hover(
						function() {
							$(this).animate({width: '34px', backgroundPosition: '0 0'}, 100);
						},
						function() {
							$(this).animate({width: '27px', backgroundPosition: '-7px 0'}, 100);
						}
				);
				
				$("#nextBtn").hover(
						function() {
							$(this).animate({width: '34px'}, 100);
						},
						function() {
							$(this).animate({width: '27px'}, 100);
						}
				);
				$('#home-lower-1').fadeIn(400, function() {
					$('#home-lower-2').fadeIn(400, function() {
						$('#home-lower-3').fadeIn(400, function() {
						});
					});
				});
			});
			
		});
	});
	
	
	
	//$("#home h2").dropShadow({left: -1, top:-1, blur: 3, opacity: 0.1});
});

