// Jquery universal effects load
$(document).ready(function(){
	
	
	//top nav finds 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');
	
	//top nav finds last child of the ul and adds the last class to accomodate the dropdown style
	$("ul.sf-menu li:last-child").addClass('no-children');	
	
	$("ul.sf-menu li:first-child").addClass('no-children');	
	
	//take the top nav and wrap the content of the a tag in a span
	var topAItem = $("ul.sf-menu > li").children('a');
	
	topAItem.each(function() {
		var aText = $(this).html();
		$(this).html('<span>' + aText + '</span>');
	});
	
	
	
}); 
