$(document).ready(function(){ var check = false; $("#category_menu, #show_category_menu").mouseover(function(){ check = true; }).mouseout(function(){ check = false; }); $("#category_menu, #show_category_menu").hoverIntent({ sensitivity: 3, interval: 200, over: function(){ $("#category_menu").slideDown(); }, timeout: 400, out: function(){ if(check == false) $("#category_menu").slideUp(); } }); }); function wait(w_switch,w_left,w_top,w_width,w_height,w_background,w_scroll_out){ if(w_switch == "on"){ if($(".wait").length < 1){ if(w_scroll_out == true){ $("html").css("overflow","hidden"); w_width = $(window).width(); } $("body").append("<div class=\"wait\" style=\"left: " + w_left + "px; top: " + w_top + "px; width: " + w_width + "px; height: " + w_height + "px; position: absolute; z-index: 98; display: block; filter: alpha(opacity=75); -moz-opacity: .75; opacity: .75;\"></div>"); $(".wait").css("background-color",w_background); $("body").append("<div class=\"wait2\" style=\"left: " + (w_left-(-((w_width/2)-90))) + "px; top: " + (w_top-(-((w_height/2)-65))) + "px; position: absolute; z-index: 99; width: 180px; display: block;\"></div>"); $(".wait2").append("<div class=\"box_top\" style=\"background-color: #969696;\"></div>"); $(".wait2").append("<div style=\"background-color: #FFFFFF; border-left: 1px solid #969696; border-right: 1px solid #969696; padding: 55px 25px 25px 25px; background-image: url(http://www.skayo.ch/backoffice/style/img/frame/imgloading.gif); background-repeat: no-repeat; background-position: 50% 25px; font-weight: bold;\"><center>Bitte warten</center></div>"); $(".wait2").append("<div class=\"box_bottom\" style=\"background-color: #969696;\"></div>"); } } else{ $(".wait2").remove(); $(".wait").remove(); if($("html").css("overflow") == "hidden") $("html").css("overflow","auto"); } }
