﻿// JavaScript Document
function addFavorite(http,siteName){
	window.external.AddFavorite(http,siteName)
}

function ball(){
	var img = new Image();
	img.src="../images/proMapBallBg_over.gif";
	//
	$.each( $("#ballList li") , function(i,n){
		$(n).css({ "z-index":99-i });
	});
	$("#ballList li:not(.next) .ballMenu:eq(0)").show();///默认一个显示下拉
	$("#ballList li:not(.next) .ballMenu:eq(0)").parent("li").addClass("over");
	$("#ballList li:not(.next)").hover(
		function(){
			$(this).find(".ballMenu").show("fast");
			$(this).addClass("over");
		},
		function(){
			$(this).find(".ballMenu").hide("normal");
			$(this).removeClass("over");
		}
	);
}
