$(function() {
    $(".fancy, .fancy2").tooltip({
        track: true,
        delay: 0,
        showURL: false,
        fixPNG: true,
        showBody: " - ",
        extraClass: "pretty fancy",
        top: -15,
        left: 5
    });
                
    $(".pageLink").colorbox({
        width:"75%", 
        height:"60%", 
        iframe:true
    });
    
    $("#cboxLoadedContent .cboxIframe").bind("load", function(){
        alert("Hi = " + $(".cboxIframe").attr("name"));
        var iframeName = "#";
        var backButton = '<div><a href="'+iframeName+'">Back</a></div>';
        $("#cboxLoadedContent iframe").after(backButton);
    });
    
});
