$(document).ready(function(){ 
	$("#searchtext a").click(function() {
    	$("form[name='audsearch']").attr("action",$(this).attr("href")).attr("method",$(this).attr("rel"));
		$("input#searchbox").attr("name",$(this).attr("name"));
		$("a.active").removeClass("active");
		$(this).addClass("active");
		return false;
    });
	$("#imagerotator").infiniteRotator();
	$("#gnav-control a").click(function() {
		$("#gnav").slideToggle("fast");
		if ($("body").hasClass("active")) {
			$("body").animate({backgroundPosition: "50% -200px"}, "fast");
		} else {
		  $("body").animate({backgroundPosition: "50% 0px"}, "fast");
		}
		if ($("#gnav-control").hasClass("active")) {
			$("#gnav-control").animate({top: "15px"}, "fast");
		} else {
		  $("#gnav-control").animate({top: "215px"}, "fast");
		}
		$("#gnav-control a,#gnav-control,body").toggleClass("active");
		return false;
	});
});
