$.fn.lastNav = function() {	$(this).each(function(){		$(this).children(":last").addClass("last");	});};// Fire up jQuery$(document).ready(function(){	// First and last	$("#utility li:first").addClass("first");	$("#header dd:last").addClass("last");	$("#nav li ul").lastNav();	$("#footer ul li:first").addClass("first");	$("#colMiddle > *:first").addClass("first");	$("#colLeft ul ul li:first").addClass("first");	$("#colLeft ul ul li:last").addClass("last");	$("#colLeft li ul").parent().addClass("open");	$("#colLeft li.open").prev().addClass("preOpen");	$("#colLeft li.active").parent().parent().addClass("active");	$("#colLeft li li.active").prev().addClass("preActive");		// Utility Nav Width	$("#utility").wrapInner("<span></span>");	var utilityWide = $("#utility span").width();	$("#utility").css({"padding-left":934-utilityWide+"px"});		// Follow Us Width	$("#footer dl").wrapInner("<span></span>");	var followWide = $("#footer dl span").width();	$("#footer dt").css({"margin-left":220-followWide+"px"});		// Set up "I am" dropdown	$("#header dd").hide();	$("#header dl").hoverIntent(		function() {			$("#header dd").slideDown();		},		function() {			$("#header dd").slideUp();		}	);		$("#nav").superfish();		// Set up jqModal	$(".iam").jqm({ajax:'@href',trigger:'#header dd a',toTop:true});	var winWide = $(window).width();	if (winWide > 951) {		$(".iam").css("left",(winWide+474)/2+"px");	} else {		$(".iam").css("left","712px");	}			$(".profile").jqm({ajax:'@href',trigger:'a.profilemore',toTop:true});	var winWide = $(window).width();	if (winWide > 951) {		$(".profile").css("left",(winWide+474)/2+"px");	} else {		$(".profile").css("left","712px");	}			});
