$(document).ready(function(){
	$('#nav a').not('.sub').mouseover(function(){
		$(this).animate({
			marginLeft: '10px'
			}, 300);
		$(this).parent().children().children().animate({
			marginLeft: '10px'
			}, 300);
	});
	$('#nav a').not('.sub').mouseout(function(){
		$(this).animate({
			marginLeft:'0'
			}, 300); 
		$(this).parent().children().children().animate({
			marginLeft:'0'
			}, 300); 
	});
});
