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

