var $j = jQuery;
// Create the tooltips only on document load
$j(document).ready(function(){
    // Match all link elements with href attributes within the content div
    $j('#facebook').qtip({
        content: '<iframe src="http://www.facebook.com/plugins/likebox.php?id=103969992972905&amp;width=292&amp;connections=10&amp;stream=false&amp;header=true&amp;height=287" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:287px;" allowTransparency="true"></iframe>',
        position: {
            corner: {
                target: 'bottomLeft',
                tooltip: 'topRight'
            }
        },
        hide: {
            fixed: true, // Make it fixed so it can be hovered over
            delay: 500
        },
        style: {
            width: {
                max: 350,
                min: 292,
            }
        }
    
    });
});
