Cufon.replace('div#nav ul li a');
Cufon.replace('div#promotional ul li a span, div#sidebar p#business a', {
    textShadow: '#000 1px 1px'
});
Cufon.replace('div#title h2', {
    textShadow: '#fff 0px 1px'
});

var $j = jQuery.noConflict();

$j(document).ready(function(){
    $j('div#site-search').mouseover(function(){
        $j(this).addClass('hover');
    }).mouseout(function(){
        $j(this).removeClass('hover');
    });

    $j('input.reset').focus(function(){
        if (this.value == this.defaultValue) {
            this.value = '';
        }
    }).blur(function(){
        if (this.value == '') {
            this.value = this.defaultValue;
        }
    });
});
