
$( function() {

	//add rounded bottom corners on the dropdown menus
	if ($.browser.msie) {
	
		$(".pageHeader .nav ul > li").each(function(){
			$(this).find("li:last").append("<div class='rounded_c_l'>&nbsp;</div><div class='rounded_c_r'>&nbsp;</div>")
		});
		
	}

});
