// Jquery universal effects load
$(document).ready(function(){
	
	
	//top nav finds first & last child of the ul and adds the last class to accomodate the dropdown style
	$("ul.sf-menu li ul li:last-child").addClass('last');
	$("ul.sf-menu li ul li:first-child").addClass('first');
	
});