$(document).ready(function() {
	$('input.text').focus(function() {
		if($(this).attr('value') == 'Keyword Search')
			$(this).attr('value', '');
	});
	
	$('#search input.image').hover(
		function() { 
			$(this).attr('src', $(this).attr('src').replace("-off", ""));
		}, 
		function() {
			$(this).attr('src', $(this).attr('src').replace(".gif", "-off.gif"));
		}
	);
});
