/* Search Bar Behaviour */

$(document).ready(function(){
	$('#s').hover(function() {
		$(this).addClass('hoverSearch'); // Hover Class
		$(this).removeClass('key');
	}, function() {
		$(this).addClass('key');
		$(this).removeClass('hoverSearch');
	});
	
	$('input[type="text"]').focus(function() {  
		$(this).removeClass("key hoverSearch").addClass("focusField");  // .key is 'normal status', .focusfield is 'focused status'
		if (this.value == this.defaultValue){  
			this.value = '';  
		}  
		if(this.value != this.defaultValue){  
			this.select();  
		}  
	});
	$('input[type="text"]').blur(function() {  
		$(this).removeClass("focusField hoverSearch").addClass("key");   
	});
});
