Файл: магазин/e-proger/js/func.js
Строк: 953
<?php
(function($) {
$.fn.tipTip = function(options) {
var defaults = {
activation: "hover",
keepAlive: false,
maxWidth: "350px",
edgeOffset: 8,
defaultPosition: "bottom",
delay: 100,
fadeIn: 200,
fadeOut: 200,
attribute: "title",
content: false,
enter: function() {},
exit: function() {}
};
var opts = $.extend(defaults, options);
if ($("#tiptip_holder").length <= 0) {
var tiptip_holder = $('<div id="tiptip_holder" style="max-width:' + opts.maxWidth + ';"></div>');
var tiptip_content = $('<div id="tiptip_content"></div>');
var tiptip_arrow = $('<div id="tiptip_arrow"></div>');
$("body").append(tiptip_holder.html(tiptip_content).prepend(tiptip_arrow.html('<div id="tiptip_arrow_inner"></div>')))
} else {
var tiptip_holder = $("#tiptip_holder");
var tiptip_content = $("#tiptip_content");
var tiptip_arrow = $("#tiptip_arrow")
}
return this.each(function() {
var org_elem = $(this);
if (opts.content) {
var org_title = opts.content
} else {
var org_title = org_elem.attr(opts.attribute)
}
if (org_title != "") {
if (!opts.content) {
org_elem.removeAttr(opts.attribute)
}
var timeout = false;
if (opts.activation == "hover") {
org_elem.hover(function() {
active_tiptip()
}, function() {
if (!opts.keepAlive) {
deactive_tiptip()
}
});
if (opts.keepAlive) {
tiptip_holder.hover(function() {}, function() {
deactive_tiptip()
})
}
} else if (opts.activation == "focus") {
org_elem.focus(function() {
active_tiptip()
}).blur(function() {
deactive_tiptip()
})
} else if (opts.activation == "click") {
org_elem.click(function() {
active_tiptip();
return false
}).hover(function() {}, function() {
if (!opts.keepAlive) {
deactive_tiptip()
}
});
if (opts.keepAlive) {
tiptip_holder.hover(function() {}, function() {
deactive_tiptip()
})
}
}
function active_tiptip() {
opts.enter.call(this);
tiptip_content.html(org_title);
tiptip_holder.hide().removeAttr("class").css("margin", "0");
tiptip_arrow.removeAttr("style");
var top = parseInt(org_elem.offset()['top']);
var left = parseInt(org_elem.offset()['left']);
var org_width = parseInt(org_elem.outerWidth());
var org_height = parseInt(org_elem.outerHeight());
var tip_w = tiptip_holder.outerWidth();
var tip_h = tiptip_holder.outerHeight();
var w_compare = Math.round((org_width - tip_w) / 2);
var h_compare = Math.round((org_height - tip_h) / 2);
var marg_left = Math.round(left + w_compare);
var marg_top = Math.round(top + org_height + opts.edgeOffset);
var t_class = "";
var arrow_top = "";
var arrow_left = Math.round(tip_w - 12) / 2;
if (opts.defaultPosition == "bottom") {
t_class = "_bottom"
} else if (opts.defaultPosition == "top") {
t_class = "_top"
} else if (opts.defaultPosition == "left") {
t_class = "_left"
} else if (opts.defaultPosition == "right") {
t_class = "_right"
}
var right_compare = (w_compare + left) < parseInt($(window).scrollLeft());
var left_compare = (tip_w + left) > parseInt($(window).width());
if ((right_compare && w_compare < 0) || (t_class == "_right" && !left_compare) || (t_class == "_left" && left < (tip_w + opts.edgeOffset + 5))) {
t_class = "_right";
arrow_top = Math.round(tip_h - 13) / 2;
arrow_left = -12;
marg_left = Math.round(left + org_width + opts.edgeOffset);
marg_top = Math.round(top + h_compare)
} else if ((left_compare && w_compare < 0) || (t_class == "_left" && !right_compare)) {
t_class = "_left";
arrow_top = Math.round(tip_h - 13) / 2;
arrow_left = Math.round(tip_w);
marg_left = Math.round(left - (tip_w + opts.edgeOffset + 5));
marg_top = Math.round(top + h_compare)
}
var top_compare = (top + org_height + opts.edgeOffset + tip_h + 8) > parseInt($(window).height() + $(window).scrollTop());
var bottom_compare = ((top + org_height) - (opts.edgeOffset + tip_h + 8)) < 0;
if (top_compare || (t_class == "_bottom" && top_compare) || (t_class == "_top" && !bottom_compare)) {
if (t_class == "_top" || t_class == "_bottom") {
t_class = "_top"
} else {
t_class = t_class + "_top"
}
arrow_top = tip_h;
marg_top = Math.round(top - (tip_h + 5 + opts.edgeOffset))
} else if (bottom_compare | (t_class == "_top" && bottom_compare) || (t_class == "_bottom" && !top_compare)) {
if (t_class == "_top" || t_class == "_bottom") {
t_class = "_bottom"
} else {
t_class = t_class + "_bottom"
}
arrow_top = -12;
marg_top = Math.round(top + org_height + opts.edgeOffset)
}
if (t_class == "_right_top" || t_class == "_left_top") {
marg_top = marg_top + 5
} else if (t_class == "_right_bottom" || t_class == "_left_bottom") {
marg_top = marg_top - 5
}
if (t_class == "_left_top" || t_class == "_left_bottom") {
marg_left = marg_left + 5
}
tiptip_arrow.css({
"margin-left": arrow_left + "px",
"margin-top": arrow_top + "px"
});
tiptip_holder.css({
"margin-left": marg_left + "px",
"margin-top": marg_top + "px"
}).attr("class", "tip" + t_class);
if (timeout) {
clearTimeout(timeout)
}
timeout = setTimeout(function() {
tiptip_holder.stop(true, true).fadeIn(opts.fadeIn)
}, opts.delay)
}
function deactive_tiptip() {
opts.exit.call(this);
if (timeout) {
clearTimeout(timeout)
}
tiptip_holder.fadeOut(opts.fadeOut)
}
}
})
}
})(jQuery);
$(document).click(function(a) {
$(a.target).closest(".wrap_transfer, .maddm").length || ($(".wrap_transfer").remove(), $(a.target).closest(".walls_gift, .wrap_walls_gift").length || ($(".wrap_walls_gift").html("").css({
top: 0
}), a.stopPropagation()))
});
var reloadpage = {
leftprofiles: function() {
$(".leftprofiles").load("modules/profiles/leftprofiles.php");
$("#tiptip_holder").css({
display: "none"
})
},
loadklink: function() {
$(".klink").load("modules/klink/klink.php");
$("#tiptip_holder").css({
display: "none"
})
},
loadban2x3: function() {
$(".ban2x3").load("modules/banner200x300/rotator.php");
$("#tiptip_holder").css({
display: "none"
})
},
loadtoppanel: function() {
$(".topmenu").load("modules/topmenu.php");
$("#tiptip_holder").css({
display: "none"
})
},
rightprofiles: function(a) {
$(".right_menu").load("modules/rightmenu.php", "type=" + a);
$("#tiptip_holder").css({
display: "none"
})
}
};
window.onload = function() {
window.onpopstate = function(a) {
a.preventDefault();
Page.Go(a.state.link, "no")
}
};
var Page = {
Go: function(a, b) {
"Microsoft Internet Explorer" == navigator.appName && 9 >= navigator.appVersion.match(/MSIEu0020([.d]+);/)[1] ? window.location.href = a : "no" != b && history.pushState({
link: a
}, null, a);
$(".body").load(a, {
ajax: "yes"
});
$("#tiptip_holder").css({
display: "none"
});
$("#nftitle").remove();
$(".js_titleRemove").remove();
a == "http://" + location.host + "/tasks" ? reloadpage.rightprofiles("tasks") : reloadpage.rightprofiles("");
reloadpage.leftprofiles();
"undefined" != typeof setIid && clearInterval(setIid)
},
RefType: function(a) {
addCookie("reftype", a, $(".body").load("/modules/profiles/referals.php?type=" + a));
return !1
}
},
forum = {
NewMsg: function(a) {
$("#btn_new_forum_msg").css({
display: "none"
});
$(".preloader").css({
display: "block"
});
$.post("ajax.php?func=forumnewmsg", {
id: a,
msg: $("#forum_msg").val()
}, function(b) {
1 == b.ok ? ($("#forum_msg").val(""), $("#btn_new_forum_msg").css({
display: ""
}), $(".preloader").css({
display: "none"
}), $.post("ajax.php?func=last_forum_mes", {
id: a
}, function(a) {
if (1 == a.ok) {
for (var b = 0; b <= a.forum_mes.length - 1; b++) $(".tab_forum").append(a.forum_mes[b]);
}
}, "json")) : 2 == b.ok ? ($("#forum_msg").focus(), $("#btn_new_forum_msg").css({
display: ""
}), $(".preloader").css({
display: "none"
})) : ($("#btn_new_forum_msg").css({
display: ""
}), $(".preloader").css({
display: "none"
}), $("body").Qnotify({
text: b.error,
sound: "error"
}))
}, "json");
return !1
},
Quote: function(a) {
document.getElementById('forum_msg').value += ("[quote]" + a + "[/quote]");
$(".wrap_body").scrollTop(1E4);
return !1
},
DelMsg: function(a) {
$.post("ajax.php?func=forumdelmsg", {
id: a
}, function(b) {
1 == b && ($(".js_titleRemove").remove(), $("#t" + a).remove())
});
return !1
},
DelTopic: function(a) {
$.post("ajax.php?func=deltopic", {
id: a
}, function(b) {
1 == b && $("#t" + a).remove()
});
return !1
},
CloseTopic: function(a, b) {
$.post("ajax.php?func=closetopic", {
id: a
}, function(b) {
1 == b ? $("#ct" + a).removeClass().addClass("close_topic_c") : 2 == b && $("#ct" + a).removeClass().addClass("close_topic")
});
return !1
},
BlockMes: function(a) {
$.post("ajax.php?func=forumblockmes", {
id: a
}, function(a) {
$(".body").Qnotify({
text: a,
sound: "error"
})
});
return !1
},
ShowSmiles: function() {
if ("" == $(".wrap_smiles").html()) {
$(".wrap_smiles").css({
width: "282px"
}).fadeIn(100).animate({
top: "-105px"
}, 300);
$(".wrap_smiles").append('<div class="smile_arrow_bot"></div><div class="body_smile"></div>');
for (var a = 1; 36 >= a; a++) $(".body_smile").append('<img src="theme/images/smile/' + a + '.png" alt="" width="19" height="19" class="img_smile" onclick="forum.AddSmile(' + a + ');" />')
} else $(".wrap_smiles").html("").fadeOut(0).css({
width: 0,
top: "-100px"
})
},
AddSmile: function(a) {
if ("" != a) {
var b = document.getElementById("forum_msg");
a = " [:" + a + ":] ";
if (document.selection) {
b.focus();
var c = b.value,
d = document.selection.createRange();
"" == d.text ? d.text = a : -1 != c.indexOf(d.text) ? d.text = a + d.text : b.value = c + a
} else b.value += a
}
$(".wrap_smiles").html("").fadeOut(0).css({
width: 0,
top: "-100px"
})
}
};
function delHistory(a, b) {
$.post("ajax.php?func=delhistory", {
id: a,
type: b
}, function(b) {
1 == b && ($(".js_titleRemove").remove(), $("#del_" + a).parent("div").remove())
});
return !1
}
var msg = {
showDialog: function(a, b) {
settings.setClose(a);
$("body").Qbox({
title: "u041du043eu0432u043eu0435 u0441u043eu043eu0431u0449u0435u043du0438u0435",
width: 410,
minHeight: 45,
fadespeed: 300,
url: "",
param: "",
data: '<div style="padding: 5px; margin:10px; text-align:center"><textarea class="val" id="msgtext" style="width:365px; height:100px; overflow: auto;"></textarea></div><div id="bot_panel"><div class="preloader"></div><a href="#" id="msgSend" onclick="msg.Send(' + a + ", '" + b + ''); return false;" class="btn_box">u041eu0442u043fu0440u0430u0432u0438u0442u044c</a></div>'
})
},
Send: function(a, b) {
var c = $("#msgSend").attr("onclick");
$("#msgSend").attr("onclick", "");
$(".preloader").css({
display: "block"
});
$.post("ajax.php?func=newmsg", {
id: a,
text: $("#msgtext").val(),
type: b
}, function(a) {
1 == a ? box_close() : (2 == a ? $("#msgtext").focus() : $(".body").Qnotify({
text: a,
sound: "error"
}), $(".preloader").css({
display: "none"
}), $("#msgSend").attr("onclick", c))
});
return !1
},
Send_d: function(a, b, c) {
$(".preload_msg").css({
display: "block"
});
$("#sendMsg").css({
display: "none"
});
$.post("ajax.php?func=newmsg", {
id: a,
text: b,
type: c
}, function(b) {
1 == b ? ($("#msgtext").val(""), Page.Go("mread=" + a, "no")) : 2 == b ? ($(".preload_msg").css({
display: "none"
}), $("#sendMsg").css({
display: "inline-block"
}), $("#msgtext").val("").focus()) : ($(".body").Qnotify({
text: b,
sound: "error"
}), $(".preload_msg").css({
display: "none"
}), $("#sendMsg").css({
display: "inline-block"
}))
});
return !1
},
Del_in: function(a) {
$.post("ajax.php?func=delmsgin", {
id: a
}, function(b) {
1 == b && ($("#del_" + a).parents(".wrap_in_mess").remove(), $("#js_title_" + a).remove())
})
},
Del_out: function(a) {
$.post("ajax.php?func=delmsgout", {
id: a
}, function(b) {
1 == b && ($("#del_" + a).parents(".wrap_in_mess").remove(), $("#js_title_" + a).remove())
})
},
Del_in_all: function(a) {
$.post("ajax.php?func=delmsginall", {
id: a
}, function(a) {
1 == a && (Page.Go("msg=inbox"), reloadpage.leftprofiles())
})
},
Del_out_all: function(a) {
$.post("ajax.php?func=delmsgoutall", {
id: a
}, function(a) {
1 == a && Page.Go("msg=outbox")
})
}
},
function_ref = {
Info: function(a) {
settings.setClose(a);
$("body").Qbox({
title: "u0418u043du0444u043eu0440u043cu0430u0446u0438u044f u043e u043fu043eu043bu044cu0437u043eu0432u0430u0442u0435u043bu0435",
width: 750,
minHeight: 45,
fadespeed: 300,
url: "modules/profiles/refinfo.php",
param: "id=" + a,
data: ""
})
},
Reward: function(a) {
settings.setClose(a);
$("body").Qbox({
title: "u0412u043eu0437u043du0430u0433u0440u0430u0436u0434u0435u043du0438u0435 u0440u0435u0444u0435u0440u0430u043bu0443",
width: 420,
minHeight: 45,
fadespeed: 300,
url: "",
param: "",
data: '<div class="infotext"><b>u0412u043eu0437u043du0430u0433u0440u0430u0436u0434u0435u043du0438u0435</b> - u0434u0435u043du0435u0436u043du0430u044f u043eu043fu043bu0430u0442u0430 u0442u0440u0443u0434u0430 u0440u0435u0444u0435u0440u0430u043bu043eu0432 u0432 u0432u0438u0434u0435 u0437u0430u0440u0430u0431u043eu0442u043du043eu0439 u043fu043bu0430u0442u044b u0438 u043fu0440u0435u043cu0438u0430u043bu044cu043du044bu0445 u0432u044bu043fu043bu0430u0442, u0437u0430u0432u0438u0441u044fu0449u0430u044f u043eu0442 u043au043eu043bu0438u0447u0435u0441u0442u0432u0430 u0438 u043au0430u0447u0435u0441u0442u0432u0430 u0442u0440u0443u0434u0430. u0412u044b u043cu043eu0436u0435u0442u0435 u0434u0435u043bu0430u0442u044c u0438u043du0442u0435u0440u0435u0441u043du044bu0435 u043fu0440u0435u0434u043bu043eu0436u0435u043du0438u044f u0412u0430u0448u0438u043c u0440u0435u0444u0435u0440u0430u043bu0430u043c u0434u043bu044f u044du0444u0444u0435u043au0442u0438u0432u043du043eu0441u0442u0438 u0437u0430u0440u0430u0431u043eu0442u043au0430 u043du0430 u043fu0440u043eu0435u043au0442u0435 u0437u0430 u0434u043eu043fu043eu043bu043du0438u0442u0435u043bu044cu043du043eu0435 u0432u043eu0437u043du0430u0433u0440u0430u0436u0434u0435u043du0438u0435. u041cu0438u043du0438u043cu0430u043bu044cu043du0430u044f u0446u0435u043du0430 - <b>0.01 u0440u0443u0431.</b></div><div style="width:235px; margin:0 auto 20px;">u0446u0435u043du0430 u0432u043eu0437u043du0430u0433u0440u0430u0436u0434u0435u043du0438u044f: <input type="text" size="8" id="reward" class="val" value="0.01" /></div><div id="bot_panel"><div class="preloader"></div><a href="#" id="rewardSend" onclick="function_ref.RewardSend(' + a + '); return false;" class="btn_box">u041eu043fu043bu0430u0442u0438u0442u044c</a></div>'
})
},
RewardSend: function(a) {
var b = $("#rewardSend").attr("onclick");
$("#rewardSend").attr("onclick", "");
$(".preloader").css({
display: "block"
});
$.post("ajax.php?func=rewardsend", {
id: a,
reward: $("#reward").val()
}, function(a) {
1 == a ? (box_close(), Page.Go(location.pathname)) : ($("body").Qnotify({
text: a,
sound: "error"
}), $(".preloader").css({
display: "none"
}), $("#rewardSend").attr("onclick", b))
});
return !1
},
Refback: function(a) {
settings.setClose(a);
$("body").Qbox({
title: "u0420u0435u0444u0431u0435u043a u0440u0435u0444u0435u0440u0430u043bu0443",
width: 420,
minHeight: 45,
fadespeed: 300,
url: "",
param: "",
data: '<div class="infotext">u041du0435 u0441u043fu0435u0448u0438u0442u0435 u0441u0442u0430u0432u0438u0442u044c u0431u043eu043bu044cu0448u043eu0439 % u0440u0435u0444u0431u0435u043au0430. u041fu043eu043du0438u0437u0438u0442u044c u0440u0435u0444u0431u0435u043a <b>u043du0435u043bu044cu0437u044f</b>. u0421u043du0430u0447u0430u043bu0430 u043eu0446u0435u043du0438u0442u0435 u0440u0430u0431u043eu0442u0443 u0440u0435u0444u0435u0440u0430u043bu0430. u0420u0430u0437u043cu0435u0440 u0440u0435u0444u0431u0435u043au0430 u043eu0442 <b>10%</b> u0434u043e <b>80%</b></div><div style="width:200px; margin:0 auto 20px;">u0423u043au0430u0436u0438u0442u0435 u0440u0435u0444u0431u0435u043a: <input type="text" size="8" id="refback" class="val" /></div><div id="bot_panel"><div class="preloader"></div><a href="#" id="refbackSend" onclick="function_ref.RefbackSend(' + a + '); return false;" class="btn_box">u0418u0437u043cu0435u043du0438u0442u044c</a></div>'
})
},
RefbackSend: function(a) {
var b = $("#refbackSend").attr("onclick");
$("#refbackSend").attr("onclick", "");
$(".preloader").css({
display: "block"
});
$.post("ajax.php?func=refback", {
id: a,
refback: $("#refback").val()
}, function(a) {
1 == a ? (box_close(), Page.Go(window.location.pathname)) : ($(".preloader").css({
display: "none"
}), $("#refbackSend").attr("onclick", b))
});
return !1
},
Alert: function(a) {
settings.setClose(a);
$("body").Qbox({
title: "u041fu0440u0435u0434u0443u043fu0440u0435u0436u0434u0435u043du0438u0435",
width: 420,
minHeight: 45,
fadespeed: 300,
url: "",
param: "",
data: '<div style="padding:10px; text-align:center">u0412u044b u0434u0435u0439u0441u0442u0432u0438u0442u0435u043bu044cu043du043e u0445u043eu0442u0438u0442u0435 u0443u0434u0430u043bu0438u0442u044c u0440u0435u0444u0435u0440u0430u043bu0430?</div><div id="bot_panel"><div class="preloader"></div><a href="#" onclick="function_ref.Del(' + a + '); return false;" class="btn_box" id="refdel">u0423u0434u0430u043bu0438u0442u044c</a></div>'
})
},
Del: function(a) {
var b = $("#refdel").attr("onclick");
$("#refdel").attr("onclick", "");
$(".preloader").css({
display: "block"
});
$.post("ajax.php?func=delreferal", {
id: a
}, function(a) {
1 == a ? (box_close(), Page.Go(window.location.pathname)) : $("#refdel").attr("onclick", b)
});
return !1
},
Autoback: function(a) {
$.post("ajax.php?func=autorefback", {
refback: a
}, function(a) {
1 == a && Page.Go(window.location.pathname)
});
return !1
},
RemoveRef: function(a) {
$.post("ajax.php?func=delreferer", {
id: a
}, function(a) {
1 == a && (box_close(), Page.Go("/mstatistic"))
});
return !1
},
Wake: function(a, b) {
settings.setClose(a);
$("body").Qbox({
title: "u0418u043du0444u043eu0440u043cu0430u0446u0438u044f",
width: 420,
minHeight: 45,
fadespeed: 300,
url: "",
param: "",
data: '<div class="infotext">u0412u0430u0448u0438 u0440u0435u0444u0435u0440u0430u043bu044b u0434u0430u0432u043du043e u043du0435 u0437u0430u0445u043eu0434u0438u043bu0438? u0420u0430u0437u0431u0443u0434u0438... u041cu044b u043du0435 u0433u0430u0440u0430u043du0442u0438u0440u0443u0435u043c u0447u0442u043e u0440u0435u0444u0435u0440u0430u043b u0432u0435u0440u043du0435u0442u0441u044f u043du0430 u043fu0440u043eu0435u043au0442, u043du043e u041cu044b u0434u0430u0434u0438u043c u0435u043cu0443 u0437u043du0430u0442u044c, u0447u0442u043e u043eu043d u0434u0430u0432u043du043e u043du0435 u0437u0430u0445u043eu0434u0438u043b u0432 u0441u0432u043eu0439 u0430u043au043au0430u0443u043du0442. <b>u0421u0442u043eu0438u043cu043eu0441u0442u044c u0443u0441u043bu0443u0433u0438 0.05 u0440u0443u0431.</b></div><div style="text-align:center;padding-bottom:10px;color:#bf8080">' + b + '</div><div id="bot_panel"><div class="preloader"></div><a href="#" onclick="function_ref.WakeSend(' + a + '); return false;" class="btn_box" id="wakesend">u041eu0442u043fu0440u0430u0432u0438u0442u044c u043fu0438u0441u044cu043cu043e</a></div>'
})
},
WakeSend: function(a) {
var b = $("#wakesend").attr("onclick");
$("#wakesend").attr("onclick", "");
$(".preloader").css({
display: "block"
});
$.post("ajax.php?func=wakesend", {
id: a
}, function(a) {
1 == a ? (box_close(), reloadpage.leftprofiles()) : (2 == a && $(".body").Qnotify({
text: "u041du0435u0434u043eu0441u0442u0430u0442u043eu0447u043du043e u0441u0440u0435u0434u0441u0442u0432 u043du0430 u0431u0430u043bu0430u043du0441u0435",
sound: "error"
}), $(".preloader").css({
display: "none"
}), $("#wakesend").attr("onclick", b))
});
return !1
}
},
walls = {
AddReferer: function(a) {
$.post("ajax.php?func=addreferer", {
id: a
}, function(b) {
1 == b && Page.Go("id" + a)
});
return !1
},
AddGift: function(a) {
"" == $(".wrap_walls_gift").html() ? ($(".wrap_walls_gift").load("modules/walls/addgift.php?id=" + a), $(".wrap_walls_gift").animate({
top: "-10px"
}, 300)) : ($(".wrap_walls_gift").html(""), $(".wrap_walls_gift").css({
top: "0"
}))
},
SendGift: function(a, b) {
$(".walls_preloader").fadeIn(500);
$("#send_walls_gift").fadeOut(0);
$.post("ajax.php?func=sendgift", {
id: a,
img: b,
comms: $("#walls_comms_gift").val()
}, function(b) {
1 == b ? Page.Go("id" + a) : ($(".walls_preloader").fadeOut(0), $("#send_walls_gift").fadeIn(500))
});
return !1
},
ShowGift: function(a, b) {
$("body").Qbox({
title: "u041fu043eu0434u0430u0440u043au0438 u043fu043eu043bu044cu0437u043eu0432u0430u0442u0435u043bu044f " + b,
width: 630,
height: 274,
fadespeed: 300,
url: "/modules/walls/gift.php",
param: "id=" + a,
data: ""
});
return !1
},
BigGift: function(a, b) {
$(".prev_big_gift").html('<img src="theme/images/gift/big/' + a + '.jpg" width="206" height="206" alt="" />');
$(".comm_gift_user").html(b)
},
ShowMess: function() {
"none" == $(".wrap_walls_add").css("display") ? $(".wrap_walls_add").fadeIn(500) : $(".wrap_walls_add").fadeOut(500)
},
AddWallsMsg: function(a, b, c) {
$("#sendmsgwalls").css({
display: "none"
});
$(".preloader").css({
display: "block"
});
$.post("ajax.php?func=addwallsmsg", {
id: a,
mess: b,
type: c,
like: $("#likes:checked").val()
}, function(b) {
1 == b ? Page.Go("id" + a) : ($("#sendmsgwalls").css({
display: ""
}), $(".preloader").css({
display: "none"
}))
});
return !1
},
MsgDel: function(a) {
$.post("ajax.php?func=delwallsmsg", {
id: a
}, function(b) {
1 == b && ($("#del_" + a).parents(".wrap_in_mess").remove(), $("#js_title_" + a).remove())
});
return !1
}
},
titlehtml = {
title: function(a, b, c, d) {
d || (d = -5);
$("body").append('<div id="js_title_' + a + '" class="js_titleRemove"><div id="easyTooltip">' + b + '</div><div class="tooltip"></div></div>');
xOffset = $("#" + c + a).offset().left + d;
yOffset = $("#" + c + a).offset().top - 32;
$("#js_title_" + a).css("position", "absolute").css("top", yOffset + "px").css("left", xOffset + "px").css("display", "none").fadeIn("fast");
$("#" + c + a).mouseout(function() {
$(".js_titleRemove").remove()
})
},
title_close: function(a) {
$("#js_title_" + a).remove()
}
},
transfer = {
Show: function(a, b) {
$(".wrap_transfer").remove();
$(".table_body").append('<div class="wrap_transfer" id="wrap_transfer_' + a + '"><div class="transfer_arrow"></div><div class="title_transfer">u041fu0435u0440u0435u0432u043eu0434 u0441u0440u0435u0434u0441u0442u0432 u043cu0435u0436u0434u0443 u0440u0435u043au043bu0430u043cu043du044bu043cu0438 u043fu043bu043eu0449u0430u0434u043au0430u043cu0438<div class="transfer_close" onclick="transfer.Close(' + a + ');"></div></div><div class="body_transfer"></div></div>');
yOffset = $("#maddm" + a).offset().top - 24 + $(".wrap_body").scrollTop();
xOffset = $("#maddm" + a).offset().left - 368;
$("#wrap_transfer_" + a).css("top", yOffset + "px").css("left", xOffset + "px").fadeIn(1E3);
$.post("modules/transfer_adv.php", {
id: a,
type: b
}, function(a) {
$(".wrap_transfer").fadeIn(500).animate({
top: yOffset - 5 + "px"
}, 300);
$(".body_transfer").html(a)
});
return !1
},
Close: function(a) {
$("#wrap_transfer_" + a).remove();
$("a.medit").css({
display: "none"
});
$("a.maddm").css({
display: "none"
});
$("a.mdel").css({
display: "none"
});
$("a.mblack_lick").css({
display: "none"
})
},
Send: function(a, b) {
var c = $("#transferSend").attr("onclick");
$("#transferSend").attr("onclick", "");
$(".preloader").css({
display: "block"
});
$.post("ajax.php?func=transfer_send", {
id: a,
type: b,
rek_area: $("#rek_area").val(),
id_area: $("#rek_id").val(),
sum: $("#sum").val()
}, function(b) {
1 == b ? ($("#wrap_transfer_" + a).remove(), Page.Go(document.location.pathname)) : ($(".preloader").css({
display: "none"
}), $("#transferSend").attr("onclick", c))
});
return !1
}
},
settings = {
setOpen: function(a) {
$(".setMenu").hide();
$("#setMenu_" + a).fadeIn(300)
},
setClose: function(a) {
$("#setMenu_" + a).fadeOut(300)
},
typerefOpen: function() {
$(".typeref").fadeIn(300)
},
typerefClose: function(a) {
$(".typeref").fadeOut(300)
},
privacyOpen: function(a) {
$(".pMenu").hide();
$("#p_" + a).fadeIn(300)
},
privacyClose: function(a) {
$("#p_" + a).fadeOut(300)
},
msg: function(a) {
$.post("ajax.php?func=messageaccess", {
type: a
}, function(a) {
1 == a && Page.Go("privacy")
});
return !1
},
ShowBirthday: function(a) {
$.post("ajax.php?func=showbirthday", {
type: a
}, function(a) {
1 == a && Page.Go("privacy")
});
return !1
},
Infoemail: function(a) {
$.post("ajax.php?func=infoemail", {
type: a
}, function(a) {
1 == a && Page.Go("privacy")
});
return !1
},
Messvk: function(a) {
$.post("ajax.php?func=messvk", {
type: a
}, function(a) {
1 == a && Page.Go("privacy")
});
return !1
},
WallsMessage: function(a) {
$.post("ajax.php?func=wallsmessageaccess", {
type: a
}, function(a) {
1 == a && Page.Go("privacy")
});
return !1
}
},
catalog = {
Show: function() {
$("body").Qbox({
title: "u0420u0435u043au043bu0430u043cu0430 u0432 u043au0430u0442u0430u043bu043eu0433u0435",
width: 500,
height: 280,
fadespeed: 300,
url: "/modules/catalog/add.php",
param: "",
data: ""
});
return !1
},
Send: function() {
$(".preloader").css({
display: "block"
});
var a = $("#category_id").val();
$.post("ajax.php?func=addcatalog", {
title: $("#catalog_title").val(),
id: $("#category_id").val(),
url: $("#url").val(),
text: $("#text").val()
}, function(b) {
1 == b ? ($(".body").Qnotify({
text: "u0420u0435u043au043bu0430u043cu0430 u0443u0441u043fu0435u0448u043du043e u0434u043eu0431u0430u0432u043bu0435u043du0430 u0432 u043au0430u0442u0430u043bu043eu0433!",
sound: "error"
}), box_close(), Page.Go("/catalog=" + a)) : 2 == b ? ($(".preloader").css({
display: "none"
}), $("#catalog_title").focus()) : 3 == b ? ($(".preloader").css({
display: "none"
}), $("#catalog_title").focus()) : 4 == b ? ($(".preloader").css({
display: "none"
}), $("#url").focus()) : 5 == b && ($(".preloader").css({
display: "none"
}), $("#text").focus())
});
return !1
}
},
tasks = {
ShowComment: function(a) {
$("body").Qbox({
title: "u041au043eu043cu043cu0435u043du0442u0430u0440u0438u0438 u043a u0437u0430u0434u0430u043du0438u044e u2116" + a,
width: 500,
height: 280,
fadespeed: 300,
url: "/modules/tasks/comments.php",
param: "id=" + a,
data: ""
});
return !1
}
};
function addCookie(a, b, c, d) {
setCookie(a, b, c);
d;
return !1
}
function setCookie(a, b, c, d, e, f) {
document.cookie = a + "=" + escape(b) + (c ? "; expires=" + c : "") + (d ? "; path=" + d : "") + (e ? "; domain=" + e : "") + (f ? "; secure" : "")
}
function windowHeight() {
return "CSS1Compat" == document.compatMode ? document.documentElement.clientHeight : document.body.clientHeight
};
function qbb(a, b, c) {
textarea = document.getElementById(c);
if (document.selection && document.selection.createRange) textarea.focus(), sel = document.selection.createRange(), sel.text = a + sel.text + b;
else if (textarea.selectionStart || "0" == textarea.selectionStart) {
c = textarea.selectionStart;
var d = textarea.selectionEnd;
textarea.value = textarea.value.substring(0, c) + a + textarea.value.substring(c, d) + b + textarea.value.substring(d, textarea.value.length);
textarea.selectionStart = textarea.selectionEnd = d + a.length + b.length
} else textarea.value += a + b;
textarea.focus()
};
var divId, nftitle = {
Show: function(e, c, d, m, g, n, p) {
var k = document.getElementById(e).getBoundingClientRect(),
h, f = 0.1,
l, b = document.getElementById("nftitle");
if (null != b) {
if (divId == e) return;
b.parentNode.removeChild(b)
}
divId = e;
b = document.createElement("div");
b.className = "wrap-nftitle";
b.id = "nftitle";
b.innerHTML = '<div id="nftitle-out"><div id="nftitle-in"></div></div><div id="nftitle-title">' + c + '</div><div id="nftitle-body">' + d + "</div>";
document.body.appendChild(b);
var a = document.getElementById("nftitle");
c = document.getElementById("nftitle-out");
d = document.getElementById("nftitle-in");
b = document.getElementById("nftitle-title");
document.getElementById("nftitle-body");
b.style.color = "#335783";
b.style.fontWeight = "bold";
b.style.padding = "7px 10px";
b.style.background = "#f2f2f2";
b.style.borderBottom = "1px solid #dae1e8";
a.style.display = "inline-block;";
h = parseInt(k.top - a.offsetHeight - 6 - g);
g = parseInt(k.left - 20 - n);
a.style.border = "1px solid #ADBAC7";
a.style.position = "absolute";
a.style.top = h + "px";
a.style.left = g + "px";
a.style.zIndex = 50;
a.style.background = "#ffffff";
a.style.opacity = 0;
a.style.fontSize = "10px";
a.style.fontFamily = "Tahoma";
a.style.width = m;
a.style.boxShadow = "0 0 2px rgba(0,0,0,0.2)";
c.style.position = "absolute";
c.style.bottom = "-6px";
c.style.borderLeft = "6px solid transparent";
c.style.borderRight = "6px solid transparent";
c.style.borderTop = "6px solid #ADBAC7";
c.style.zIndex = 52;
c.style.left = document.getElementById(e).offsetWidth / 2 + 14 + "px";
d.style.position = "absolute";
d.style.top = "-6px";
d.style.borderLeft = "5px solid transparent";
d.style.borderRight = "5px solid transparent";
d.style.borderTop = "5px solid #ffffff";
d.style.zIndex = 51;
d.style.left = "-5px";
1 > f && (l = setInterval(function() {
f += 0.1;
1 <= f ? clearInterval(l) : (a.style.opacity = f, a.style.top = h + 10 * f + "px")
}, 25));
p ? document.onclick = function(a) {
for (var b = 0; b < document.getElementById("nftitle-body").childNodes.length; b++)
if (a.target == document.getElementById("nftitle-body").childNodes[b] || "nftitle-title" == a.target.id || "nftitle-body" == a.target.id) return;
null != document.getElementById("nftitle") && document.getElementById("nftitle").parentNode.removeChild(document.getElementById("nftitle"))
} : null != document.getElementById(e) && (document.getElementById(e).onmouseout = function() {
document.getElementById("nftitle").parentNode.removeChild(document.getElementById("nftitle"))
})
}
};
(function(c) {
"function" === typeof define && define.amd ? define(["jquery"], c) : "object" === typeof exports ? module.exports = c : c(jQuery)
})(function(c) {
function m(b) {
var a = b || window.event,
g = [].slice.call(arguments, 1),
d = 0,
e = 0,
h = 0,
f = 0,
f = 0;
b = c.event.fix(a);
b.type = "mousewheel";
a.wheelDelta && (d = a.wheelDelta);
a.detail && (d = -1 * a.detail);
a.deltaY && (d = h = -1 * a.deltaY);
a.deltaX && (e = a.deltaX, d = -1 * e);
void 0 !== a.wheelDeltaY && (h = a.wheelDeltaY);
void 0 !== a.wheelDeltaX && (e = -1 * a.wheelDeltaX);
f = Math.abs(d);
if (!l || f < l) l = f;
f = Math.max(Math.abs(h), Math.abs(e));
if (!k || f < k) k = f;
a = 0 < d ? "floor" : "ceil";
d = Math[a](d / l);
e = Math[a](e / k);
h = Math[a](h / k);
g.unshift(b, d, e, h);
return (c.event.dispatch || c.event.handle).apply(this, g)
}
var n = ["wheel", "mousewheel", "DOMMouseScroll", "MozMousePixelScroll"],
g = "onwheel" in document || 9 <= document.documentMode ? ["wheel"] : ["mousewheel", "DomMouseScroll", "MozMousePixelScroll"],
l, k;
if (c.event.fixHooks)
for (var p = n.length; p;) c.event.fixHooks[n[--p]] = c.event.mouseHooks;
c.event.special.mousewheel = {
setup: function() {
if (this.addEventListener)
for (var b = g.length; b;) this.addEventListener(g[--b], m, !1);
else this.onmousewheel = m
},
teardown: function() {
if (this.removeEventListener)
for (var b = g.length; b;) this.removeEventListener(g[--b], m, !1);
else this.onmousewheel = null
}
};
c.fn.extend({
mousewheel: function(b) {
return b ? this.bind("mousewheel", b) : this.trigger("mousewheel")
},
unmousewheel: function(b) {
return this.unbind("mousewheel", b)
}
})
});
?>