jQuery(document).ready(function() {
	jQuery('input[value]').each(function(){
		if(this.type == 'text' || this.type == 'password') {
			jQuery(this).focus(function(){ if (this.value == this.defaultValue) { this.value = ''; }
			}).blur(function(){ if (!this.value.length) { this.value = this.defaultValue; }});
		}
	});
	jQuery('textarea').each(function(){
		jQuery(this).focus(function(){ if (this.value == this.defaultValue) { this.value = ''; }
		}).blur(function(){ if (!this.value.length) { this.value = this.defaultValue; }});
	});
	jQuery(".cch-dropdown-parent").mouseover(function(){
			jQuery(this).children(".cch-dropdown").toggleClass("cch-active");
			jQuery(this).children(".cch-name").toggleClass("cch-current");
	}).mouseout(function(){
			jQuery(this).children(".cch-dropdown").toggleClass("cch-active");
			jQuery(this).children(".cch-name").toggleClass("cch-current");
	});
});

