
		function nav_overs(id,h,spd){
			$('#'+id+' li').hover(function() {
        	$(this).children('.link a').animate({ marginTop: -h }, spd);
      		}, function() {
       		$(this).children('.link a').animate({ marginTop: -0 }, spd);          
      		});	
		}
		
	
		function globalnav_overs(id){
        	$('#'+id+' li').hover(
			function(){$(this).addClass('over');},
			function(){$(this).removeClass('over');}
			);
		}
		
		onload = function(){

	
};
