// Removes margin, padding and background to the last <ul> on each column of the sub-menu, also the right margin on the last column on the same menu.

$(document).ready(function(){
						   
	$("div.second_level_menu ul:last-child")
		.css({marginBottom:"0", background:"none", paddingBottom:"0"});
	$("div.second_level_menu div.menu_column:last-child")
		.css({marginRight:"0", paddingRight:"0"});		
});


