$(document).ready(function() {
			$('#tabbed > ul, #tabbed2 > ul, #tabbed3 > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
			$('#headertab > ul').tabs({ fx: { opacity: 'toggle' } });
			var elts = $('#topmenu ul > li');
			var options = { path: '/', expires: 10 };
			if($.cookie("activeMenu")) {
				var x = $.cookie("activeMenu");
				$("#topmenu ul li:eq("+ x +")").addClass("current");
			}
			
			$("#activeMenu").click(function () { 
				var getLi = $.cookie("activeMenu");
				alert("Cookie activeMenu: " + getLi);
			});

			// lava menu
			$("#topmenu ul").lavaLamp({
				fx: "swing",
				speed: 500,
				click: function() {
					var x = elts.index(this);
					var li = $("#activeMenu").offset();
					$.cookie("activeMenu", x, options);
					$(this).removeClass("current");
					if($.browser.msie && $.browser.version == 6) {
						//return false;
					}
				}
			});
			$(".navigate a").hover( function () {$(this).stop().animate( { backgroundColor:"rgb(250,250,250)",color:"rgb(7,167,213)"}, 450 )},function () {$(this).stop().animate( {backgroundColor:"rgb(255,255,255)",color:"rgb(92,92,92)"}, 950 )});
			$(".morelink a").hover( function () {$(this).stop().animate( { backgroundColor:"rgb(182,226,112)",color:"rgb(255,255,255)"}, 450 )},function () {$(this).stop().animate( {backgroundColor:"rgb(112,178,226)",color:"rgb(255,255,255)"}, 950 )});
			$('ul#banners').innerfade({animationtype: 'fade',speed: 1000,timeout: 10000,type: 'sequence',containerheight: '64px'});
		});