$(document).ready(function(){ 
	$("#nav ul li:not(.current_page_item):not(.current-menu-parent) a").hover(
	  function () {
	    $(this).animate({
	        paddingTop: "25px",
	        paddingBottom: "7px"
	      },{
	        queue:false,
	        duration:200,
	        easing: 'easeOutExpo'
	      });
	  }, 
	  function () {
	    $(this).animate({
			paddingTop: "16px",
			paddingBottom: "16px"
	      },{
	        queue:false,
	        duration:200,
	        easing: 'easeOutExpo'
	      });
	  }
	);
	
	$(".box-inner").corner("round 5px").parent().css('padding', '1px').corner("round 6px");
	$("#nav ul li.current-menu-item a").corner("top round 5px");
	$("#nav ul li.current-menu-parent a").corner("top round 5px");
	
	/*$("#slider img").corner("round 5px");*/
		
	/*$("ol#controls li a").hover(
	  function () {
	    $(this).parent().animate({
			opacity: 0.50,
			backgroundColor: "white"
	      },{
	        queue:false,
	        duration:200
	      });
	  }, 
	  function () {
	    $(this).parent().animate({
			opacity: 0.50,
			backgroundColor: "white"
	      },{
	        queue:false,
	        duration:200
	      });
	  }
	);
	*/
	$("#facebooklink").hover(
	  function () {
	    $(this).animate({
	        top: "-6px",
	      },{
	        queue:false,
	        duration:300,
	        easing: 'easeOutExpo'
	      });
	  }, 
	  function () {
	    $(this).animate({
			top: "-10px",
	      },{
	        queue:false,
	        duration:300,
	        easing: 'easeOutExpo'
	      });
	  }
	);
});
