$.ajaxSetup({ cache: false });
$().ajaxStart(function() {$(document.body).append('<img class="Center Loading" src="http://www.worldjewellerymarket.com/resimler/loading.gif" />'); });
$().ajaxStop(function () { $('.Loading').remove(); RandAds(); });



function ToolTip() {
    $('.ToolTip').tooltip({
        bodyHandler: function () {
            var html;
            $.ajax({
                url: $(this).attr("url"),
                async: false,
                success: function (rtn) {
                    html = rtn;
                }
            });
            return html;
        }
    });
}

$(function () {
      $("ul.sf-menu").superfish();
    ToolTip();
});

function OpenTB(url, w, h, modal) {
    tb_show('', url + (url.indexOf('?') <0 ? '?': '&' )+'TB_iframe=true&height='+h+'&width=' + w + (modal==true ? '&modal=true' : '') )
}

function OpenModal(url, w, h, autoClose, title) {
    $.fn.colorbox({ href: url, iframe: true, innerWidth: w, innerHeight: h, overlayClose: autoClose, title: title });
}
function CloseModal() {
    parent.$.fn.colorbox.close();
}

