$(document).ready(function(){   
    $('.nametag').hide();
    $('.youtube').colorbox({iframe:true, innerWidth:560, innerHeight:315});
    
    $('#trigger-strategic').mouseover(function(){
        $('div#grow-your-business').html('<img src="wp-content/themes/g3m2011/images/g3m_Strategic.png" alt="Strategic">');
    });
    $('#trigger-analytical').mouseover(function(){
        $('div#grow-your-business').html('<img src="wp-content/themes/g3m2011/images/g3m_Analytical.png" alt="Analytical">');
    });
    $('#trigger-tactical').mouseover(function(){
        $('div#grow-your-business').html('<img src="wp-content/themes/g3m2011/images/g3m_Tactical.png" alt="Tactical">');
    });
    $('div#business-growth p').mouseout(function(){
        $('div#grow-your-business').html('');
    });
    /* // This code handles the "collapsing" sidebar
    $('.sidebar').click(function(){
        if (!$('#container').is('.home'))
        {
            $('#container').toggleClass('collapsed');
        }
    });*/
    $('.client').mouseover(function(){
        $(this).children('.nametag').show();
    });
    $('.client').mouseout(function(){
        $(this).children('.nametag').hide();
    });    
});
