/* ----------------------------------------------------------
	title		  : CU Framework
	created		  : 5/7/09
	last updated  : 7/20/09
---------------------------------------------------------- */
jQuery.noConflict();     
jQuery(document).ready(function($){

 
$('#zipcode').keyup(function(e) {

   if(e.keyCode == 13) {
 	
   var theZip = $('#zipcode').val();
 	
   document.getElementById('frm').action='http://www.cuswirl.com/search?zipcode=' + theZip; 
   document.getElementById('frm').enctype='';
   $("#frm").submit();
   }
 
});



});//end doc ready
