 $(document).ready(function() {
		$('#searchterm').liveSearch({ajaxURL: 'sr.asp?searchterm='});

		
		var $subNav = $('#leftfeat ul');
		if ($subNav.length) {
			$subNav.find('ul a:not(.curractive)').hover(function() {
				$(this).stop().animate({backgroundColor: '#775c79', color: '#E7d5c1'}, 250);
			}, function() {
				$(this).stop().animate({backgroundColor: $('body').css('background-color'), color: '#E7d5c1'}, 250);
			});
		};


	

	

    }); 