$(document).ready(function() {
	$('#bar ul.menu-nav li.parent').hover(function() {
		$(this).find('ul').animate({height: 'toggle'},'fast');
	}, function() {
		$(this).find('ul').animate({height: 'toggle'},'fast');
	});
	$('#footer ul.menu-nav').find('li:last').css('border','none');
});