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 list_overs(id,spd){
	$('#'+id+' a').hover(function() {
  	$(this).animate({ paddingLeft: '10px' }, spd);
	}, function() {
   	$(this).animate({ paddingLeft: '0px' }, spd);    
	});
}
		
function globalnav_overs(id){
   	$('#'+id+' li').hover(
	function(){$(this).addClass('over');},function(){$(this).removeClass('over');
	});
}

