/**
 * @author christopher.graves1
 */
function displaynav(){
	 $(this).find('ul').stop(true, true).fadeIn("slow");
}

function closenav(){
	$(this).find('ul').stop(true, true).fadeOut("slow");
}
