
	
		$(function() {
		
			// lute navigation hover states
			
			$('#luteWeb li a').removeClass('lwNoJs');
			
			$('#luteWeb li a').hover(
				function() {
					$(this).stop().animate({
						color: "#333",
						fontSize: "180%"
					}, 200);
					$('#luteWeb li#now').stop().animate({
						color: "#999"
					}, 200);
				},
				function() {
					$(this).stop().animate({
						color: "#999",
						fontSize: "150%"
					}, 100);
					$('#luteWeb li#now').stop().animate({
						color: "#333"
					}, 100);
				}
			);
		
			// tooltips
		
			$('.what').tooltip({
				showURL: false,
				fade: 500,
				delay: 50,
				top: -20,
				left: 5
			});
			
			$('.sayWhat').tooltip({
				showURL: false,
				fade: 200,
				delay: 30,
				top: -65,
				left: -60,
				extraClass: "vad"
			});
		    
		  
		   // same page nice scrolling links
		    
	 	   $('a[href*=#]').click(function() {
	
		   	if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { var $target = $(this.hash); $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
	
			   if ($target.length) {var targetOffset = $target.offset().top; $('html,body').animate({scrollTop: targetOffset}, 1000); return false;}}
		   
		   });
		
		});