function bannerShow() {
    $('#promoImg ul').innerfade({
        animationtype: 'fade',
        speed: 2000,
        timeout: 5000,
        type: 'sequence'
    });
}
function slideShow() {
    $('.launchSlideShow').click(function() {
        $.blockUI({
            message: $('#slideShow')
        });
        return false
    });
    $('#overlayClose').click(function() {
        $.unblockUI();
        return false
    });
    $('.slideNext, .slidePrev').click(function() {
        var a = $(this).parents('.slide').attr('id');
        var b = $(this).attr('href');
        $('#' + a).hide();
        $(b).show();
        return false
    })
}
