$(document).ready(function(){
	var tmp=$("div[id*='listbox']").eq(0).children("img").attr("src");
	$("div[id*='listbox']").click(function(){
		  if(parseInt($(this).css("z-index"))<=3){
			  var curZindex = parseInt($(this).css("z-index"));
			  var  fntimes = 4-curZindex;
			  $(document).everyTime(300,function(){
				  $("div[id*='listbox']").each(function(){
					  if(parseInt($(this).css("z-index"))==4){$(this).css("z-index","1");}
					  else{$(this).css("z-index",""+(parseInt($(this).css("z-index"))+1)+"");}
					  //$(this).css("margin-top","0px");
				  });
			  },fntimes);
		  }
		
		  if( $(this).attr("id") == "listbox3"){
			  window.location = $(this).children("img").attr("location");
		  }
	  });
	setInterval(function(){
		$("div[id*='listbox']").each(function(){
				if(parseInt($(this).css("z-index"))==4){
					$(this).css("z-index","1");
					$(this).fadeOut(500);
				}
				else{
					$(this).css("z-index",""+(parseInt($(this).css("z-index"))+1)+"");
					if($(this).css("z-index") == 4){
						$(this).fadeIn(1000);
					}
				}
		});
	},10000);
})
