    $(document).ready(function(){
    	
		manset();

	});
	
	function manset(){
			myajax(0,0);
			
		$(".contentBox:not(:first)").hide();
		$(".contentBox").hide().eq(0).show();
		$("#tabs li a:first").addClass("active");
		
		
		$("#tabs li a").click(function(){
			$("#tabs li a").css('z-index','1000')
			$(".tab2").css('z-index','2000')
			var indexTabLink = $("#tabs li a").index(this);
			myajax(indexTabLink,0);
			$(".contentBox").hide().eq(indexTabLink).show();
			$("#tabs li a").removeClass("active").eq(indexTabLink).addClass("active");
			
		});
		
		altGecis();
		};
		
	   function altGecis(){
          
		$("#wrapper2 .contentBox2").hide();
			
		$("#wrapper2 .contentBox2").eq(0).show();
		
		$("#tabss #tabs2 li .items").mouseover(function(){
			
				indextab = $("#tabss #tabs2 li .items").index(this);
$("#wrapper2 .contentBox2").hide();
			$("#wrapper2 .contentBox2").eq(indextab).show();
			});


			
		};
		
	
	    
