$(document).ready(function(){

	$('#nav-full > li.here').each(function(){ 
		$('> a', this).css("border-bottom","3px solid #799e5c");
	});

	$('#nav-full > li').hover(function(){
		$('ul', this).show();
		$('#nav-full > li.here > a').css("border-bottom","3px solid #cfcfcf");
		$('> a', this).css("border-bottom","3px solid #799e5c");
	},function(){
		$('ul',this).hide();
		$('> a', this).not(".here").css("border-bottom","3px solid #cfcfcf");
		$('#nav-full > li.here > a').css("border-bottom","3px solid #799e5c");
	});
});
