Cufon.replace('.main-cols .col h3', {color: '-linear-gradient(0.7=#bb8b46, #9e723e)', textShadow: '#000 1px 1px, #c8b08d 0 -1px' });
Cufon.replace('#content h3', {color: '-linear-gradient(0.7=#bb8b46, #9e723e)', textShadow: '#000 1px 1px, #c8b08d 0 -1px' });

jQuery(document).ready(function($){
	
	$('#navigation ul li:last').addClass('last');
	
	/* Field Focus */
	
	$('.field').focus(function(){
		if( $(this).attr('title') == $(this).val() ) {
			$(this).val('');
		}
	}).blur(function(){
		if( $(this).val() == '' ) {
			$(this).val( $(this).attr('title') );
		}
	});
	
	/* End Field Focus */
	
	
});	
