$(document).ready(function() {
	
	$("#footer .footer_widget").each(function(i) {
		$(this).addClass('widget_'+i);
	});
	
	$("#nav li").hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
	$("#nav li ul").each(function() {
		$(this).children("li:first").addClass('first');
	});
	$("#nav li ul").each(function() {
		$(this).children("li:last").addClass('last');
	});
});
