function behaviors() {
    // Show/Hide Viddler example image.
    $("#Example").hide();
    
    $("strong.EmbedCode").click(
        function(){
            $("#Example").show('fast');
        }
    );
    
    $("#Example").click(
        function(){
            $(this).hide('fast');
        }
    );
}
$(document).ready( behaviors );