$( document ).ready( function(){
	
	$("#keyword").focus( function(){
		if( this.value == "Search Products" ){
			this.value = "";
			$(this).css( "text-align", "left" );
		}
	}).blur( function(){
		if( this.value.length == 0 ){
			this.value = "Search Products";
			$(this).css( "text-align", "center" );
		}
	});
	
	//Products Spotlights
	$(".spotlights_hide").add(".spotlights_disp").mouseover( function(){
		$(".spotlights_disp").attr( "class", "spotlights_hide" );
		$( this ).attr( "class", "spotlights_disp" )
	});
});

function checkSearchForm(){
	if( $("#keyword").val() == "Search Products" || $("#keyword").val() == "" ){
		alert("ÇëÊäÈë¹Ø¼ü×Ö£¡");
		return false;
	}
	return true;
}
