$(document).ready(function(){ $(".submenu").hover(function(){ $(this).children(".header_subcategories_menu").css("display", "block"); }, function(){ $(this).children(".header_subcategories_menu").css("display", "none"); }) $(".header_subcategories_menu").corner("bottom 10px"); $(".qTip_producent").css({"cursor" : "pointer"}); $(".qTip_producent").each(function(){ producent_nazwa = $(this).children("img").attr("alt"); producent_logo = $(this).children("img").attr("src"); var n = producent_logo.lastIndexOf("."); e = producent_logo.substr(n); if(producent_logo != "") var text = "

"; else var text = "" + producent_nazwa + " "; // alert(producent_nazwa); $(this).qtip({ content: { text: text, }, position: { my: 'top center', // Use the corner... at: 'bottom center' // ...and opposite corner }, show: { event: 'click mouseenter', ready: false, solo: true }, hide: { delay: 400, fixed: true, event: "mouseout" }, style: { classes: 'qtip-shadow qtip-mod' } }).bind('click', function(event){ event.preventDefault(); return false; }); }) });