jQuery(document).ready(function() {

	$('.nav > li:last').addClass('last');
	
	$('.nav > li').hover( function() {
		$(this).children('a').addClass('hover');
		$(this).children('ul').css('display', 'block');
	}, function() {
		$(this).children('a').removeClass('hover');
		$(this).children('ul').css('display', 'none');
	});
	
});
