$(document).ready(function() {
	$("#productshow").click(function(){
		$(this).attr('checked',true);
		$("#productlist").attr('checked',false);
		$("#input1").show();
		$("#input2").hide();
		$("#searchApp").attr('value','network');
	})
	$("#productlist").click(function(){
		$(this).attr('checked',true);
		$("#productshow").attr('checked',false);
		$("#searchApp").attr('value','product');
		$("#input2").show();
		$("#input1").hide();
		
	});
	$("#productshow").attr('checked',true);
	
	
});
