
$(document).ready(function() {
	//search form textfield default value
	$('#edit-search-block-form-1').click(
			function() {
				if (this.value == 'Search spices') {
					this.value = '';
					$('#edit-search-block-form-1').addClass("focused");
				}
			}
		);
		$('#edit-search-block-form-1').blur(
			function() {
				if (this.value == '') {
					this.value = 'Search spices';
					$('#edit-search-block-form-1').removeClass("focused");
				}
			}
		);
		
});

if (Drupal.jsEnabled) {
    $(document).ready(function()
    {
      //Contact form remove ":"
    	var lab1 = $('.webform-client-form label');
    	lab1.each(function() { $(this).html($(this).html().replace(":", "")); });
    });
}
