Cufon.replace('h1');
Cufon.replace('h2');
Cufon.replace('h3');
Cufon.replace('div#menu ul li a');
Cufon.replace('div#doormat dl dt');

$(document).ready(function(){
    $('input.empty, textarea.empty').focus(function(){
        if ($(this).attr('value') === $(this).attr('defaultValue')) {
            $(this).attr('value', '');
        }
    }).blur(function(){
        if ($(this).attr('value') === '') {
            $(this).attr('value', $(this).attr('defaultValue'));
        }
    });

    $('a[rel=nofollow]').click(function(){
        window.open(this.href);
        return false;
    });
    
    $('.slideshow').cycle({
        fx: 'fade',
        timeout: 5000,
        random: 1
    });
});
