$(function(){

	$("form.add-ajax-form").submit(function(){
		p = $(this).find("input[name='product_id']").val();
		e = $(this).find("input[name='enquiry_type']").val();
		t = $(this).find("input[name='product_type']").val();

		w = (e == 2) ? 350 : 300;
		h = (e == 2) ? 480 : 300;

		tb_show('Add to enquiry',"/productadd/form/"+p+"/"+e+"/"+t+"/?TB_iframe=true&height="+h+"&width="+w+"&modal=true");

		return false;
	})

})