$(function () {
			
			//expand to show description
			$("ul.sub-navigation li").bind("mouseenter",function () {
										$(this)
											.stop()
											.animate({height: '+=35px'})
											.css({cursor: 'pointer'})
											.children("a").css({color: '#f1a600'});
													});
			
			$("ul.sub-navigation li").bind("mouseleave",function () {
										$(this)
											.stop()
											.animate({height: '24px'})
											.css({cursor: 'default'})
											.children("a").css({color: '#355059'});
													});
			//make li a link
			$("ul.sub-navigation li").click(function () {
												  	window.location = $(this).children("a").attr("href")
												  });
			
			
			$("ul.sub-navigation li").each(function () { 
										if ( $(this).attr("id") == thisPage ) {
					$(this).children("a").css({color: '#f1a600'});
					$(this).css({height: '59px'}).unbind("mouseenter").unbind("mouseleave");
					
										}
										 });
			
				
			
});//close jquery