//Description:add events to the search header box
Event.observe(window,'load',function(e){
	try{
		$('txtKeywords').observe('focus',function(ev){
			var el = $('txtKeywords');
			el.value=(el.value=='Order Code/Keyword') ? '' :el.value;
		});
		$('txtKeywords').observe('blur',function(ev){
			var el = $('txtKeywords');
			el.value=(el.value=='') ? 'Order Code/Keyword' : el.value; 	
		});
	}catch(e){	
	}
});
