// JavaScript Document jQuery(document).ready(function(jQuery) { var switcher = new ThemeSwitcher({ targetClassName : 'theme', imagePath : 'http://www.elbeo.de/media/elbeo-home/', themes : ['shaping', 'support', 'elegance', 'trend', 'strick-damen', 'strick-herren'], //themes : ['shaping', 'elegance', 'strick-damen', 'strick-herren'], switchMs : 1000, autoSwitchDelayMs : 5000 }, false); jQuery(switcher).bind(switcher.ePRELOAD_COMPLETE, function(){ switcher.start(); }); switcher.preload(); jQuery('a.switcher').mouseenter(function(){ /*console.log(jQuery(this).attr('id'));*/ switcher.stopAutoSwitching(); switcher.switchTo(jQuery(this).attr('id')); }); jQuery('a.switcher').mouseleave(function(){ switcher.startAutoSwitching(); }); });