$().ready(function(){

	$('#thank_you_form').validationEngine({scroll:false})
                                                                                                                                         
 })//end of function from line 1  
 
 $(function() {
		$('#header_search').autocomplete({
			source: "/coupon_lookup.php",
			minLength: 2
		});
		
		$('#m').autocomplete({
			source: "/coupon_lookup.php",
			minLength: 2,
			mustMatch: false
		});

		
		
		$( "#discount_search" ).autocomplete({
			source: "/coupon_lookup.php",
			minLength: 2,
			select: function (e, ui) {
				$( "#discount_search" ).val(ui.item.value)
				$('#discount_search_submit').click();
			}
		});
	});
 
 

