// JavaScript Document


$().ready(function() {
			$('.searchBox').click(
				function() {
					if (this.value == this.defaultValue) {
					this.value = '';
					}
				}
			);
			
			$('.searchBox').blur(
				function() {
					if (this.value == '') {
					this.value = this.defaultValue;
					}
				}
			);
			
			$("#searchStr").autocomplete("/ac.php", {
				width: 185,
				scroll: false,
				selectFirst: false
			});
			
			$("#searchStr").result(function(event, data, formatted) {
			if (data)
			window.location = "/?act=viewProd&productId=" + data[1];
		});
				
					
					
					
					
});	