// 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('last');
	
	//search element
	$('#searchlink').click(
		function() {
			$('#searchform-holder').toggle();
			$('#s').focus();
		}
	);
	$('#search-close').click(
		function() {
			$('#searchform-holder').toggle();
		}
	);
	
}); 
