
/**
 * Onload
 */

jQuery(document).ready(function()
{
    /**
     * News Ticker
     */

    jQuery('#ticker').fadeIn('fast', function() {
        cycle(0);
    });
 
    function cycle(intIndex)
    {
        intIndex = (intIndex > (jQuery('#ticker > p').size() - 1)) ? 0 : intIndex;
 
        jQuery('#ticker p').eq(intIndex).delay(100).fadeIn('slow').delay(4000).fadeOut('slow', function() {
            cycle(intIndex + 1);
        });
    }

   /**
     * Energy-Ease Modal
     */

    jQuery('a.energy-star-modal').fancybox({
        'centerOnScroll': true,
        'hideOnOverlayClick': true,
        'hideOnContentClick' : false,
        'overlayOpacity': 0.85,
        'overlayColor': '#000',
        'padding': 0,
        'showCloseButton': true,
        'transitionIn': 'fade',
        'transitionOut': 'fade'
    });});

