//addFavorite bookmark
(function ($) {
	$.fn.jFav = function (d) {
		var e = $.extend({}, $.fn.jFav.defaults, d);
		var f = e.msg;
		this.each(function () {
			if (!$(this).attr("href") || $(this).attr("href") == "#") {
				$(this).attr("href", "http://www.525m.com/index.html");
			}
			if (!$(this).attr("title")) {
				$(this).attr("title", "我爱我买 - 空中大卖场,消费养老");
			}
			if ($.browser.opera) {
				$(this).attr("link", $(this).attr("href")).attr("href", "").attr("href", "javascript:void(0)").attr("onClick", "$.fn.jFav.OperaBookmark(this,\"" + $(this).attr("title") + "\",\"" + $(this).attr("link") + "\")");
			} else {
				$(this).click(addToFavorites);
			}
		});
		function addToFavorites(a) {
			var b = "http://www.525m.com/index.html";
			var c = "我爱我买 - 空中大卖场,消费养老";
			if ($.browser.msie) {
				window.external.AddFavorite(b, c);
			} else {
				if ($.browser.mozilla) {
					window.sidebar.addPanel(c, b, "");
				} else {
					if (navigator.userAgent.toLowerCase().indexOf("chrome") > -1) {
						alert(f);
					} else {
						if ($.browser.safari) {
							alert(f);
						}
					}
				}
			}
			a.preventDefault();
		}
		return this;
	};
	$.fn.jFav.defaults = {msg:"对不起，您的浏览器不支持该操作! \n请您使用菜单栏或Ctrl+D收藏本站。"};
	$.fn.jFav.OperaBookmark = function (e, a, b) {
		e.rel = "sidebar";
		e.title = a;
		e.href = "";
		e.href = b;
		e.click();
		return false;
	};
})(jQuery);


