/*	
//	CarCast.co.uk 2008 (v2) 
//	Homepage JavaScript
*/	
	
jQuery( function() {
    $("input.hpPostcode").keypress( function(e) {
        if (e.which == 13) {
            $("input.hpSearchButton").click();
            return false;
        } else {
            return true;
        }
    });
});
