Cufon.replace(
	'#navigation a', {
		textShadow: 'rgba(52,93,19,0.6) 0 -1px 0', 
		fontFamily: 'HelveticaNeueBoldCondensed'
	}
);
Cufon.replace(
	'#content h1, .bar h2', {
		fontFamily: 'HelveticaNeueBold'
	}
);
Cufon.replace(
	'.intro p strong', {
		fontFamily: 'HelveticaNeue'
	}
);
$(function (){
    /*label in textbox*/
    $('form .label-in-field').each(function() {
        if ($(this).val() == '')
            $(this).val( $(this).prev('label').text() );
    })
    $('form .label-in-field').focus(function() {
        var label_txt = $(this).prev('label').text();
        if ( $(this).val() == label_txt ) {
            $(this).val('');
        }
    });
    $('form .label-in-field').blur(function() {
        var label_txt = $(this).prev('label').text();
        if ( $(this).val() == '' ) {
            $(this).val(label_txt);
        }
    }); // end label in textbox
    
    $('#bottom-logos li:first-child').addClass('first-child');
});

