;(function ($) {
	$(function() {
		$('.field').
	    focus(function() {
	        if(this.title==this.value) {
	            this.value = '';
	            $(this).addClass('field-focus');
	        }
	    }).
	    blur(function(){
	        if(this.value=='') {
	            this.value = this.title;
	            $(this).removeClass('field-focus');
	        }
	    });
	    
	    $('#search-form .button').hover(function() {
	    	$(this).addClass('button-hover');
	    }, function() {
	    	$(this).removeClass('button-hover');
	    });
	});
})(jQuery)