$(document).ready(function() {
    $('a[rel="_blank"]').each(function() {
        $(this).attr('target', '_blank');
    });

    // TurboMessage empty default value
    $('input#turboemailaddress').focus(function() { 
        if ($(this).val() == "Emailadres") { $(this).val(""); }        
    }).blur(function() {
        if ($(this).val() == "") { $(this).val("Emailadres"); }    
    });
    $('textarea#turbomessage').focus(function() {
        if ($(this).val() == "Uw bericht") { $(this).val(""); }
    }).blur(function() {
        if ($(this).val() == "") { $(this).val("Uw bericht"); }
    });      
});

Cufon.replace('#moodbar h1', { fontFamily: 'Cooper Black' });
Cufon.replace('#navigation a, h4', { fontFamily: 'Tw Cen MT Condensed Extra Bold' });
