jQuery(document).ready(function(){
	Cufon.replace('.cufon', { hover: true });
	
	//Cufon('.gradient', { 
	//	textShadow: '#3d2d1c 1px 1px',
	//	color: '-linear-gradient(0=#745b39, 0.5=#b99b5f, 1=#745b39)'
		
	//});
	jQuery('#menu li:last').removeClass('menu_separator');
	
	
	jQuery('#SearchForm_SearchForm_Search').focus(function() {  
		
         if (this.value == this.defaultValue){  
             this.value = '';  
         }  
         if(this.value != this.defaultValue){  
             this.select();  
         }  
     });  
     jQuery('#SearchForm_SearchForm_Search').blur(function() {  
    	 if (this.value == ''){  
             this.value = (this.defaultValue ? this.defaultValue : '');  
         }  
     });
      
     
});



// bg grid toggler
function toggleBg(){
	if (jQuery('#wrap').hasClass('grid')) {
		jQuery('#wrap').removeClass('grid');
		return false;
	} else {
		jQuery('#wrap').addClass("grid");
		return false;
	}
	return false;
}

