// On Page Load
$(function() {

    // Poster
    if ($('#posterToggleSwitch').length > 0) {
        $('#posterToggleSwitch').click(function() {
            if ($('#posterToggleSwitch').html() == 'View the back.') {
                $('#posterToggleSwitch').html('View the front.');
                $('#posterFront').fadeOut();
                $('#posterBack').fadeIn();
            } else {
                $('#posterToggleSwitch').html('View the back.');
                $('#posterFront').fadeIn();
                $('#posterBack').fadeOut();
            }
            return false;
        });
    }

    // Client and Case Study Slideshows
    if ($('#slideshow').length > 0) {
        SetupPromos()
    }

    $(".rolloverPromo").mouseover(function() {
        $(this).addClass("over");
    }).mouseout(function() {
        $(this).removeClass("over");
    }).click(function() {
        location.href = $(this).find("a").attr("href");
    })

});