//<![CDATA[
				$(document).ready(function() {
					$("#topnav li").prepend("<span><\/span>"); //Throws an empty span tag right before the a tag    
					
					$("#topnav li").each(function() {
						var linkText = $(this).find("a").html();
						$(this).find("span").show().html(linkText);
					});
					
					$("#topnav li").hover(function() { //hover in
						$(this).find("span").stop().animate({ 
							marginTop: "-40"
						}, 250);
					} , function() { //hover out
						$(this).find("span").stop().animate({
							marginTop: "0"
						}, 250);
					});
					
					$("#slider").easySlider({
							auto: true, 
							continuous: true,
							controlsShow: false,
							pause: 4000,
							speed: 1800
					});
				});
			//]]>
