$(function() {
	//$('#navWrap').find('>ul').superfish();
	$('#navWrap ul li:first-child').addClass('first');
	$('#navWrap ul li:last-child').addClass('last');

});

function widthFix(c,r,b) {
	// c: container; $('#pageWrap')
	// r: right child element to be fixed; c.find(".rightCorner")
	// b: bottom child element to be fixed; c.find(".bottomCorner")
	if($.browser.version < 7.0 && $.browser.msie) {
		with($(c)) {
			find(">"+r).css("margin-right", innerWidth()%2 != 0 ? "-1px" : "0px");
			find(">"+b).css("margin-bottom", innerHeight()%2 != 0 ? "-1px" : "0px")
		}
	}
}