$(document).ready(function() { /* Hover Menu */ function addMega(){ $(this).addClass("hovering"); } function removeMega(){ $(this).removeClass("hovering"); } var megaConfig = { interval:100, sensitivity:4, over:addMega, timeout:100, out:removeMega }; $("li.mega").hoverIntent(megaConfig); /* Video Scroller */ $("#video_scroller").scrollable({ vertical:true, size: 3, next: '#next', prev: '#prev' }); // initialize scrollable /* Telemea Text Scroller */ $("#telemea_scroller").jScrollPane(); }); /* Flash image pop */ function flashImage(href, title, width, height) { var objLink = document.createElement('a'); objLink.setAttribute('href', "http://www.hochland.ro/ro/images/produse/flash/"+href); objLink.setAttribute('rel', 'lightbox'); objLink.setAttribute('title', title); objLink.setAttribute('width', width); objLink.setAttribute('height', height); $.Lightbox.init(objLink); $.Lightbox.start(objLink); return false; }