$(document).ready(function() {

// home page form
$('#btn-tell-us-more').click(function() {
  $('#home-bb-contact-form').submit();
  return false;
});

// interior page form
$('#btn-tell-us-more2').click(function() {
  $('#interior-contact-form').submit();
  return false;
});

$('input[type="text"]').focus(function() {
	if (this.value == this.defaultValue){ 
		this.value = '';
	}
	if(this.value != this.defaultValue){
		this.select();
	}
});
$('input[type="text"]').blur(function() {
	if (jQuery.trim(this.value) == ''){
		this.value = (this.defaultValue ? this.defaultValue : '');
	}
});

// cufon
Cufon.replace('.tinos', { fontFamily: 'tinos' });
Cufon.replace('.tinos-bold,#home-content h2,#interior-content h2,#interior-content h3,#interior-content h4,#home-bb-text1,,#home-bb-text2,#home-bb-text3', { fontFamily: 'tinos-bold' });
Cufon.replace('#top-nav ul.dropdown li a', {
				fontFamily: 'tinos',
				hover: true
				});
//Cufon.replace('#hp-123-1 h4,#hp-123-2 h4,#hp-123-3 h5,#hp-123-3 h4', {fontFamily: 'TrajanPro',textShadow: '#666666 1px 1px'});

}); //ready
