// Welcome to your jquery.base file ... place awesome jquery stuff here to help spruce up / fix / whatever your site. A link to this file has already been placed in each masterpage
jQuery(function(){
	jQuery("#content #maintop, #content #mainbot, #content .left, #content .right, #rm").each( function() {
		jQuery(this).children(".skin:last").addClass("last");
	});
	// add first and last classes to various elements
	jQuery(".subnavblock, .footlinksblock, #topnav, #topnav ul").each( function() {
		jQuery(this).children("li:last").addClass("last");
		jQuery(this).children("li:first").addClass("first");
	});
	/* client implemented own custom dropdown
	jQuery("ul.sf-menu").superfish({ 
		pathClass:  'current',
		delay: 1000
	});*/
});