	jQuery(window).load(function(){

		jQuery('li.headlink').hover(
			function() { jQuery('ul.sub_menu', this).fadeIn(100); },
			function() { jQuery('ul.sub_menu', this).fadeOut(100) },
			function() { jQuery('li.sub_link', this).fadeIn(100); },
			function() { jQuery('li.sub_link', this).fadeOut(100) }
			);

		jQuery('li.sub_link').hover(
			function() { jQuery('ul.fly_menu', this).fadeIn(100); },
			function() { jQuery('ul.fly_menu', this).fadeOut(100) });	
		jQuery('a.top').click(function(){
    jQuery('html, body').animate({scrollTop: '0px'}, 300);
    return false;
    });
         
	});


