$(document).ready(function(){
	
	//Animation
	$("#menu a").hover(function() {
		$(this).find("span").animate({marginTop: "4px"}, 180);
		}, function(){
			$(this).find("span").animate({marginTop: "0px"}, 180);
	 });
	
	//Remove css
	$("ul.subnav li:last-child a").css("background-image", "none");
	
	//Append
	$("ul.subnav li:first-child a").append('<em class="submenu_arrow"></em>');
	
	
	//Submenu
	$("a.displaynav").hover(function() {
		
		$(this).parent().find("ul.subnav").show();

		$(this).parent().hover(function() {
		}, function(){
			$(this).parent().find("ul.subnav").hide();
		});

	});
	
	
	//Animation2
	$("#menu2 a").hover(function() {
		$(this).find("span").animate({marginLeft: "4px"}, 180);
		}, function(){
			$(this).find("span").animate({marginLeft: "0px"}, 180);
	 });
	
	
	//Submenu2
	$("a.displaynav2").hover(function() {
		
		$(this).parent().find("ul.subnav2").show();

		$(this).parent().hover(function() {
		}, function(){
			$(this).parent().find("ul.subnav2").hide();
		});

	});
	
	
	//Append
	$("ul.subnav2 li:first-child a").append('<em class="submenu_arrow"></em>');
	
	//Remove style
	$("#menu2 li ul li:last-child a").css("background-image", "none");
	
	
	//Remove style
	$("#footer div:last-child").css("border-right", "none");
	
});
