<!--
$().ready(function() {
	$("#topSearch").submit(function() {
		var t = this.title || this.name || null;
		var g = null;
		var query = $('#search_query').val();
		var url = "/search/search.php?query="+query+"&start=1&search=1&hide_header=1&keepThis=true&TB_iframe=true&height=500&width=600"
		// show the ThickBox
		tb_show(t, url, null);
		/* tb_show(t, this.action, null); */
		return true;
	}).attr("target", "TB_iframeContent");
});


$().ready(function() {
	$("#ptopSearch").submit(function() {
		var t = this.title || this.name || null;
		var g = null;
		var model = $('#model').val();
		var url = "/search/quickfind.php?model="+model+"&keepThis=true&TB_iframe=true&height=540&width=610"
		// show the ThickBox
		tb_show(t, url, null);
		/* tb_show(t, this.action, null); */
		return true;
	}).attr("target", "TB_iframeContent");
});



// -->