$(document).ready(function() {
	$('#quickkeywords, #retrykeywords').click(function(){
		if($(this).val() == 'Search this site') {
			$(this).attr('value','');
		} 
	}).focus(function(){
		if($(this).val() == 'Search this site') {
			$(this).attr('value','');
		} 
	})
	$('#quickkeywords').blur(function () {
		if($('#quickkeywords').val() == undefined || $('#quickkeywords').val() == '') {
			$(this).val('Search this site');
		} 
	})
	$('#retrykeywords').blur(function () {
		if($('#retrykeywords').val() == undefined || $('#retrykeywords').val() == '') {
			$(this).val('Search this site');
		} 
	})
});

