jQuery(function(){

	jQuery("input[name='keywords']").val('Type the Model No. or Product Name');
	jQuery("input[name='keywords']").focus( function(){
			if (this.value == 'Type the Model No. or Product Name') {this.value = '';}
		}		
	)
	jQuery("input[name='keywords']").blur( function(){
			if (this.value == '') {this.value = 'Type the Model No. or Product Name';}
		}		
	)
jQuery.getJSON("http://www.chinazrh.com/items2.php?jsoncallback=?", function(json){
	//alert(json.data);
   jQuery("#items").html(json.data+' ');
}); 

jQuery.getJSON("http://www.chinazrh.com/logininfo2.php?jsoncallback=?", function(json){
   jQuery("#login").html(json.data);
}); 

jQuery.getJSON("http://www.chinazrh.com/footcategory_ajax.php?jsoncallback=?", function(json){
   jQuery("#footcategory").html(json.data);
}); 

})
