$(document).ready(function(){ // DD_belatedPNG.fix('.png_fix_ie'); // Cufon.replace('.cufon'); $("a.prettyPhoto").prettyPhoto( {theme: 'dark_rounded' }); $("ul.dropdown li").hover(function(){ $(this).addClass("hover"); $('ul:first',this).css('visibility', 'visible'); }, function(){ $(this).removeClass("hover"); $('ul:first',this).css('visibility', 'hidden'); }); $('div.pictos-alertes img').each( function () { var imgQtips = ''; $(this).qtip({ /*content: 'test ',*/ content: imgQtips, position: { corner: { target: 'rightBottom', tooltip: 'topLeft' } }, style: { border: { width: 4, radius: 2 }, tip: true, // Give it a speech bubble tip with automatic corner detection name: 'light' // Style it according to the preset 'cream' style } }); }); });