var galleryInterval; //var textInterval; jQuery( document ).ready( function(){ var opts = { align: 'middle' , labels: false , distance: 110 }; jQuery('#flip').jqDock(opts); var lightbox_settings = { imageLoading: 'http://www.llp-consulting.com/images/llp/lightbox-ico-loading.gif', imageBtnClose: 'http://www.llp-consulting.com/images/llp/lightbox-btn-close.gif', imageBtnPrev: 'http://www.llp-consulting.com/images/llp/lightbox-btn-prev.gif', imageBtnNext: 'http://www.llp-consulting.com/images/llp/lightbox-btn-next.gif', imageBlank: 'http://www.llp-consulting.com/images/llp/lightbox-blank.gif', txtImage: '', txtOf: ' / ', fixedNavigation: true }; jQuery('.lightbox').lightBox( lightbox_settings ); jQuery('.lightbox2').lightBox( lightbox_settings ); $('#flip').hover(function() { stopScroll(); }, function () { resumeScroll(); }); /* $('#footer_text').hover(function() { stopScrollText(); }, function () { resumeScrollText(); }); */ resumeScroll(); // resumeScrollText(); }); $(document).ready(function (){ $("#marquee").marquee({ scrollSpeed: 30, showSpeed: 1, pauseSpeed: 1 }); }); function stopScroll() { clearInterval(galleryInterval); } /*function stopScrollText() { clearInterval(textInterval); }*/ function resumeScroll() { clearInterval(galleryInterval); galleryInterval = setInterval("doScroll()",50); }/* function resumeScrollText() { clearInterval(textInterval); textInterval = setInterval("doScrollText()",50); }*/ function doScroll() { var oMyDiv = document.getElementById( 'flip' ); oMyDiv.scrollLeft += 1; }/* function doScrollText() { var oMyDiv = document.getElementById( 'footer_text' ); oMyDiv.scrollLeft += 1; }*/ function introStart() { $('#intro').height($(window).height()); $('#intro').width($(window).width()); $('#intro').fadeIn(000); window.setTimeout("introStop()", 3500); } function introStop() { $('#intro').fadeOut(500); $('#page_container').fadeIn(000); } function introSkip() { $('#intro').fadeOut(00); $('#page_container').fadeIn(000); }