
jQuery(document).ready(function($) {

    // remove empty hero images
    $('#hero img').each(function(){
        if ($(this).attr('src') == '') $(this).remove();
    });
    
    // remove empty gallery images
    var count = 0;
    $('.pgallery img').each(function(){
        if ($(this).attr('src') == '') {
            $(this).remove();
            count += 1;
        }
        if (count == 5) $('.pgallery').remove();
    });

    $('.slideTarget').click(function(){
        $(this).next('.childTarget').slideToggle();
        return false;
    });

    $('.childTarget').click(function(){
        return true;
    });

    $('#hero').cycle({ 
        fx:     'fade',
        speed:  'slow',
        timeout: 4000
    });

    $('.pgallery').cycle({ 
        fx:     'fade',
        speed:  'slow',
        timeout: 4000
    });

    var zIndexNumber = 1000;
    $('div').each(function() {
        $(this).css('zIndex', zIndexNumber);
        zIndexNumber -= 10;
    });
    
});


    
