$(document).ready(function(){ 

// PRETTY PHOTO INIT
$("a[rel^='prettyPhoto']").prettyPhoto();						 

// AJAX CONTACT FORM INIT

 $('#contact').ajaxForm(function(data) {
		 if (data==1){
			 $('#success').fadeIn("slow");
			 $('#bademail').fadeOut("slow");
			 $('#badserver').fadeOut("slow");
			 $('#contact').resetForm();
			 }
		 else if (data==2){
				 $('#badserver').fadeIn("slow");
			  }
		 else if (data==3)
			{
			 $('#bademail').fadeIn("slow");
			}
			});


$('.menu-home-menu-container').hover(
		  function () {
			$(this).stop().animate({"top": "-5px"}, "slow");
		  },
		  function () {
			$(this).stop().animate({"top": "-100px"}, "slow");
		  }
		);
		
		
});

$(function() {
        $(window).scroll(function() {
            if ($(this).scrollTop() != 0) {
                $('.menu-home-menu-container').stop().animate({"top": "-100px"}, "normal");
                $('.gotoTop').fadeIn();
            } else {
                $('.gotoTop').fadeOut();
            }
        });

        $('.gotoTop').click(function() {
            $('body,html').animate({ scrollTop: 0 }, 800);
        });
    });
    
    
