// JavaScript Document
$(document).ready(function(){
	Cufon.replace('#header_phone');
	Cufon.replace('#nav', {
		hover: {
			textShadow: '2px 2px #1155b9',
			color: '-linear-gradient(#FFF, #FFF, #ffa9ad)'
		},
		textShadow: '#1155b9 1px 1px'
	});
	Cufon.replace('#footer_address h2');
	Cufon.replace('#footer_address p');
	Cufon.replace('#content > h2');
	
	var defVal = $('.search_field')[0].defaultValue; 
	$('.search_field').val(defVal);
	
	$('.search_field').click(function() {
		if (this.value == this.defaultValue) {
			this.value = '';
			$(this).css('color', '#333');
		}
	});
	$('.search_field').blur(function() {
		if (this.value == '') {
			this.value = this.defaultValue;
			$(this).css('color', '#acabad');
		}
	});
});
