
(function($){$.fn.elemLinkListHover=function(options){var config={};if(options){$.extend(config,options);}
this.each(function(){var self=this;$(this,self).children('li').each(function(n){$(this).find('a').not($(this).find('ul a')).hover(function(){$(this).closest('li').addClass('elem-hover');},function(){$(this).closest('li').removeClass('elem-hover');});});});};})(jQuery);

$(document).ready(function(){$('.elem-page .elem-links-imgTop .elem-linkList').elemLinkListHover();$('.elem-page .elem-links-imgTop-2col .elem-linkList').elemLinkListHover();$('.elem-page .elem-links-imgTop-3col .elem-linkList').elemLinkListHover();$('.elem-page .elem-links-imgTop-4col .elem-linkList').elemLinkListHover();$('.elem-page .elem-links-imgTop-6col .elem-linkList').elemLinkListHover();$('.elem-page .elem-links-carousel .elem-linkList').elemLinkListHover();});
