﻿


jQuery(document).ready(function() {

    jQuery('#step1').fadeIn();
    jQuery('#testimonialtext').focus();
//    jQuery('#callmenow').click(steps.verifyValidPhone);

});
         

jQuery.fn.hoverClass = function(c) {
    return this.each(function() {
        jQuery(this).hover(
			function() { jQuery(this).addClass(c); },
			function() { jQuery(this).removeClass(c); }
		);
    });
};


var steps = {
    message: null,
    verifyValidPhone: function() {
        var phonenumber = jQuery('#phonenumberfield').value;
        if (phonenumber.length < 10)
            return false;
        return true;
    },
    moveToStep2: function() {

        var title = $('#intro').html();
        $('#step1').fadeOut(200, function() {
            $('#step2').fadeIn(200);
            $('#phonenumberfield').focus();
        });
    }
}