var carouselinterval; var carouseldelay; (function( window, undefined ) { var nah = { callback: { showForm: function(){ jQuery('#buttons-keeper').find('.reveal').slideDown(); jQuery('#callbackheader_response').html(''); jQuery('#callbackheader_status').html(''); }, hideForm: function(){ jQuery('#buttons-keeper').find('.reveal').slideUp(); jQuery('#callbackheader_form').validationEngine('hide'); } } } }; window.nah = nah; })(window); jQuery(document).ready(function(){ //jQuery('body').removeClass('no-js'); if(jQuery('.datepicker').length > 0){ jQuery('.datepicker').datepicker(); } //generic field value clearer jQuery('.textfield').focus(function(){ if(jQuery(this).val() == jQuery(this).attr('title')){ jQuery(this).val(''); } }).blur(function(){ if(jQuery(this).val() == ''){ var mm = jQuery(this).attr('title'); jQuery(this).val(mm); } }); //make sure we don't submit the default values with form submissions jQuery('form').submit(function(){ jQuery(this).find('.text').each(function(){ if(jQuery(this).val() == jQuery(this).attr('title')){ jQuery(this).val(''); } }); }); // HTML5 placeholder version //jQuery('input, textarea').placeholder(); /* callback box expand/collapse */ jQuery('#id_phone_1').click(function(){ nah.callback.showForm(); }); jQuery('#callbackcancel').click(function(){ nah.callback.hideForm(); return false; }); jQuery('#footer_phone_1').focus(function(){ nah.btmcallback.showForm(); }); jQuery('#footerCancelButton').click(function(){ nah.btmcallback.hideForm(); return false; }); /* claims process page */ jQuery('.stepclaim .title').click(function(){ nah.claimsprocess.toggle(jQuery(this)); }); });