jQuery(document).ready(function() {

    // Newsletter
    jQuery('input:text').each(function(){
        var highlight = '#000';
        var original = jQuery(this).val();
        var faded = jQuery(this).css('color');
        jQuery(this).click(function(){
            if (jQuery(this).val() == original) {
                jQuery(this).attr('value', '');
                jQuery(this).css({'color': highlight });
            }
        });
        jQuery(this).blur(function(){
            if ((jQuery(this).val() == '') || (jQuery(this).val() == original)) {
                jQuery(this).attr('value', original);
                jQuery(this).css({'color': faded });
            }
            if ((jQuery(this).val() != '') && (jQuery(this).val() != original)) {
                jQuery(this).css({'color': highlight });
            }
        });
    });

    // Embed textarea
    jQuery('textarea').click(function(){
       jQuery(this).select();
    });

    // Lead slideshow
    jQuery('#lead-slideshow').after('\
        <span id="l-controls">\
            <a href="#" id="l-prev"><img src="/page/-/img/lead-arrow_left.png" alt="Previous" /></a>\
            <span id="l-nav"></span>\
            <a href="#" id="l-next"><img src="/page/-/img/lead-arrow_right.png" alt="Next" /></a>\
        </span>');
    jQuery('#lead-slideshow').cycle({
       fx: 'fade',
       timeout: 10000,
       prev: '#l-prev',
       next: '#l-next',
       pager: '#l-nav',
       height: '299px'
    });
    
    // Facts slideshow
    jQuery('#facts-slideshow').after('<a href="#" id="f-prev"><img src="/page/-/img/facts-arrow_left.png" width="25" height="25" alt="Previous" /></a>');
    jQuery('#facts-slideshow').after('<a href="#" id="f-next"><img src="/page/-/img/facts-arrow_right.png" width="25" height="25" alt="Next" /></a>');
    jQuery('#facts-slideshow').cycle({
        fx:  'scrollHorz', 
        timeout: 0,
        prev: '#f-prev',
        next: '#f-next',
        height: '328px'
    });
    jQuery('#facts-slideshow p.fact').css();

});