$(document).ready(function(){function j(){if(a.val()===""){alert("Please enter your name");a.focus();return false}if(b.val()===""){alert("Please enter your address");b.focus();return false}if(c.val()===""){alert("Please enter your city");c.focus();return false}if(d.val()===""){alert("Please select your state");d.focus();return false}if(e.val()===""){alert("Please enter your zip code");e.focus();return false}if(f.val()===""){alert("Please enter your phone number");f.focus();return false}if(g.val()=== ""){alert("Please select an amount for gallon bottles");g.focus();return false}if(h.val()===""){alert("Please select an amount for 32oz spray bottles");h.focus();return false}if(i.val()===""){alert("Please select an amount for 8oz bottles");i.focus();return false}return true}var k=$("#cleaning-supplies-form"),a=$("#full-name"),b=$("#address"),c=$("#city"),d=$("#state"),e=$("#zip-code"),f=$("#phone"),g=$("#gallons"),h=$("#spray-bottles-32oz"),i=$("#bottles-8oz"),l=$("#submit");a.focus();k.submit(function(){if(j()){$(".loading-img").show(); l.attr({disabled:true});return true}else return false})});