


// prepare the form when the DOM is ready 
$(document).ready(function() { 
    // bind form using ajaxForm 
    $('#StartForm').ajaxForm({ 
        // target identifies the element(s) to update with the server response 
        target: '#TargetStart', 
 
        // success identifies the function to invoke when the server response 
        // has been received; here we apply a fade-in effect to the new content 
        success: function() { 
            $('#TargetStart').fadeIn('slow'); 
        } 
    }); 
});
// prepare the form when the DOM is ready 
$(document).ready(function() { 
    // bind form using ajaxForm 
    $('#VIPForm').ajaxForm({ 
        // target identifies the element(s) to update with the server response 
        target: '#TargetVIP', 
 
        // success identifies the function to invoke when the server response 
        // has been received; here we apply a fade-in effect to the new content 
        success: function() { 
            $('#TargetVIP').fadeIn('slow'); 
        } 
    }); 
});

// prepare the form when the DOM is ready 
$(document).ready(function() { 
    // bind form using ajaxForm 
    $('#2w1Form').ajaxForm({ 
        // target identifies the element(s) to update with the server response 
        target: '#Target2w1', 
 
        // success identifies the function to invoke when the server response 
        // has been received; here we apply a fade-in effect to the new content 
        success: function() { 
            $('#Target2w1').fadeIn('slow'); 
        } 
    }); 
});

// prepare the form when the DOM is ready 
$(document).ready(function() { 
    // bind form using ajaxForm 
    $('#HOMEForm').ajaxForm({ 
        // target identifies the element(s) to update with the server response 
        target: '#TargetHOME', 
 
        // success identifies the function to invoke when the server response 
        // has been received; here we apply a fade-in effect to the new content 
        success: function() { 
            $('#TargetHOME').fadeIn('slow'); 
        } 
    }); 
});

// prepare the form when the DOM is ready 
$(document).ready(function() { 
    // bind form using ajaxForm 
    $('#STUDENTForm').ajaxForm({ 
        // target identifies the element(s) to update with the server response 
        target: '#TargetSTUDENT', 
 
        // success identifies the function to invoke when the server response 
        // has been received; here we apply a fade-in effect to the new content 
        success: function() { 
            $('#TargetSTUDENT').fadeIn('slow'); 
        } 
    }); 
});

// prepare the form when the DOM is ready 
$(document).ready(function() { 
    // bind form using ajaxForm 
    $('#DUALPOWERForm').ajaxForm({ 
        // target identifies the element(s) to update with the server response 
        target: '#TargetDUALPOWER', 
 
        // success identifies the function to invoke when the server response 
        // has been received; here we apply a fade-in effect to the new content 
        success: function() { 
            $('#TargetDUALPOWER').fadeIn('slow'); 
        } 
    }); 
});

// prepare the form when the DOM is ready 
$(document).ready(function() { 
    // bind form using ajaxForm 
    $('#GRACZForm').ajaxForm({ 
        // target identifies the element(s) to update with the server response 
        target: '#TargetGRACZ', 
 
        // success identifies the function to invoke when the server response 
        // has been received; here we apply a fade-in effect to the new content 
        success: function() { 
            $('#TargetGRACZ').fadeIn('slow'); 
        } 
    }); 
});

// prepare the form when the DOM is ready 
$(document).ready(function() { 
    // bind form using ajaxForm 
    $('#BESTIAForm').ajaxForm({ 
        // target identifies the element(s) to update with the server response 
        target: '#TargetBESTIA', 
 
        // success identifies the function to invoke when the server response 
        // has been received; here we apply a fade-in effect to the new content 
        success: function() { 
            $('#TargetBESTIA').fadeIn('slow'); 
        } 
    }); 
});

// prepare the form when the DOM is ready 
$(document).ready(function() { 
    // bind form using ajaxForm 
    $('#EXTREMEForm').ajaxForm({ 
        // target identifies the element(s) to update with the server response 
        target: '#TargetEXTREME', 
 
        // success identifies the function to invoke when the server response 
        // has been received; here we apply a fade-in effect to the new content 
        success: function() { 
            $('#TargetEXTREME').fadeIn('slow'); 
        } 
    }); 
});










