// Search function
$(document).ready( function(){
	$(".search_on").click (
		function() { $(this).hide(); $(".search_hide").show().animate( { left: "+=700" }, 1400) }
	);
});

// Drop-Down Navigation menus
$(document).ready( function(){
    $(".navigation_sub_menu").hover (
        function() { $(".navigation_sub", this).fadeIn(500); }, 
        function() { $(".navigation_sub").fadeOut(150); }
    );
});

// Show description of Link (NAV)
$(document).ready( function(){
	$(".nav_button a").hover (
		function() { $(this).next(".hover_text").animate( { opacity: "show", top: "-45" }, 500 ); },
		function() { $(".hover_text").animate( { opacity: "hide", top: "-55" }, 150 ); }
	);
});

// Show description of Link (SUB)
$(document).ready( function(){
	$(".navigation_smenu a").hover (
		function() { $(this).next(".hover_text").animate( { opacity: "show", top: "-85" }, 500 ); },
		function() { $(".hover_text").animate( { opacity: "hide", top: "-95" }, 150 ); }
	);
});