$(document).ready(function() {
	//Make dropdowns work
	$("#header_navigation > li").hover(function() {
		//$("#header_navigation li").removeClass('hover');
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
	
	$(".top_category_children li:last-child").addClass('last-child');
});
