// JavaScript Document
$(document).ready(function() {
  
  // app links
  $(".app_links ul li a").hover(
	  function () {	  
		$(this).parent().find('span').animate({
			top: '-=10',
		  }, 50 );
	  }, 
	  function () {
		$(this).parent().find('span').animate({
			top: '+=10',
		  }, 50 );
	  }
	);
	
	// transition home to page
	 $(".home_content div a").click(function() {
		$('.head_hoald').animate({
			height: 170,
		  }, 750, function() {
			$('.wall').fadeIn();
			$('.home_content').fadeOut( '250', function () {
				$('#page').fadeIn();
			});
		  });
	 });
	 
	 // transition page to home
	 $("#homelink").click(function() {
		$('#page').fadeOut('250', function () {
			$('.home_content').fadeIn();
			$('.wall').fadeOut( '250', function () {
				$('.head_hoald').animate({
					height: 550,
			  	});
			});
		});
	 });
	 	 
});

