/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /*function showBanner(id,thisid) { $('.lm_item').removeClass('active'); $('#'+thisid).addClass('active'); $('.foto').hide(); $('#bfoto_'+id).fadeIn(); }*/ jQuery(document).ready(function($) { $(function () { $('#top_menu li a').each(function () { $(this).parent().eq(0).hoverIntent(function () { //$(this).addClass('activeli'); }, function () { //$(this).removeClass('activeli'); }); }); }); $(function () { $('.dropdown').each(function () { $(this).parent().eq(0).hoverIntent(function () { $(this).children().addClass('activemenu'); $('#top_menu').css('background-position','0 50px'); $('.foto').css('z-index','-1'); $('#sluzby').addClass('active'); //if(ie6) { $('#holder select').hide(); } $('.dropdown:eq(0)', this).slideDown(); }, function () { //if(ie6) { $('#holder select').show(); } $('#top_menu').css('background-position','0 0px'); $('.foto').css('z-index','0'); $('#sluzby').removeClass('active'); $(this).children().removeClass('activemenu'); $('.dropdown:eq(0)', this).slideUp(); }); }); }); });