$(document).ready(function(){
	
	//$(this).children('img.btn-icon').stop(true, true).animate({'width':'123px','height':'127px','left':'0px','top':'0px'})
	
	var countTwo = 1;
	
	setInterval(fadeEvents, 50)
	
	function fadeEvents() {
		$("#navigation li:nth-child("+countTwo+")").animate({"top": "-15px"}, 300, function(){
			//fadeEvents();
		});
		countTwo++;
	}
	
	$(".btn").hover(function(){
		$(this).stop(true,true).animate({"top": "0px"}, 200);
		}, 
		function () {
		$(this).stop(true,true).animate({"top": "-15px"}, 200);
	}); 
	
	$("#signupbutton").hover(function(){
		$("#signupdog").stop(true,true).animate({"marginTop": "20px"}, 200);
		}, 
		function () {
		$("#signupdog").stop(true,true).animate({"marginTop": "0px"}, 200);
	}); 
	
	$('.btn-holder').hover(function(){
		$(this).children('img.btn-icon').stop(true, true).animate({'width':'264px','height':'274px','left':'-75px','top':'-65px'})
		//alert("this does something")
		
	}, function() {
		$(this).children('img.btn-icon').stop(true, true).animate({'width':'123px','height':'127px','left':'0px','top':'0px'})

	});
	
	$('#findusfacebook').hover(function(){
		$('img.facebook2b').stop(true, true).animate({'marginLeft':'0px'}, 300)
		//alert("this does something")

	}, function() {
		$('img.facebook2b').stop(true, true).animate({'marginLeft':'-104px'}, 300)

	});
 

//if($('#datepicker').length != 0) {
//	$(function() {
//		$("#datepicker").datepicker();
//	});
if($('#datepicker').length != 0) {
	$(function() {
			//$("#datepicker").datepicker();
			$( "#datepicker" ).datepicker({ changeYear: true });
	});
}

});
