$(document).ready(function() {   
    if(runAd == true) {
        var path = '/images/clarence2.jpg';
        $.colorbox({ innerWidth:'600px', innerHeight: '408px', inline: true, href: '<a href="#" id="clarence"><img border="0" width="600" src="' + path + '" alt="' + path + '" /></a>'});
    }                                                    
    
    $('#clarence').live('click', function(e){
        e.preventDefault();
        $.colorbox.close();
    });
});
