$(function(){ $('#idMenuTopCenter .menu').hover( function(){ if(!$(this).hasClass('first')){ $(this).find('img').css({ 'border-bottom':'solid 1px black' }); } }, function(){ if(!$(this).hasClass('first')){ $(this).find('img').css({ 'border-bottom':'solid 0px black' }); } }); }); $(document).ready(function() { /* This is basic - uses default settings $("a#idAgroImgFancy").fancybox(); Using custom settings */ $("a#idAgroImgFancy").fancybox({ 'hideOnContentClick': true }); /* Apply fancybox to multiple items $("a.group").fancybox({ 'transitionIn' : 'elastic', 'transitionOut' : 'elastic', 'speedIn' : 600, 'speedOut' : 200, 'overlayShow' : false }); */ });