$(document).ready(function(){

    // Setup facebox anchors
    $('a[rel*=facebox]').facebox()

    // Load clear text function
    clearTextBox();

    // Clear search box 
    function clearTextBox() {
        $('input#search').each(function(){
            if($(this).attr('value')){
                var inputText = $(this).attr('value');
                $(this).focus(function(){
                    if($(this).attr('value') == inputText){
                        $(this).val('');
                    }
                }).blur(function(){
                    if($(this).attr('value') == ''){
                        $(this).val(inputText);
                    }
                });
            }
        });
    };

    // Make entire promo clickable
    $(".promo-cbeebies").click(function (ev) {
        ev.preventDefault();
        var href = $('a', this).attr('href');
        location.href = href;
    });

});

function fbs_click() {
    u=location.href;
    t=document.title;
    window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
    console.log('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t));
    return false;
}