$(function () {
	theDivSearch = document.getElementById('SAISearch').style;

	var searchLabel = ' Search Keywords';
	$('#SAISearch').val(searchLabel).focus(function() {
		if (this.value == searchLabel) {
			$(this).val('');
			//theDivSearch.color = "#313131";
			//theDivSearch.padding = "1px 0 1px 1px";
		};
	}).blur(function () {
		if (this.value == '') {
			$(this).val(searchLabel);
			//theDivSearch.color = "#9D9B94";
			//theDivSearch.padding = "1px 0 1px 1px";
		};
	});
	$('#search').submit(function() {
		if ($('#SAISearch').val() == searchLabel) {
			$('#SAISearch').val('');
		}
	});
});
