﻿window.onload = function () {
    //    $('.btnSubmitPromoForm').click(function () {        
    //        sendSubmitForm();        
    //    });
    var carousel = document.getElementById('yoo-carousel-1');
    var flypage = document.getElementById('product-flypage');
    if (!carousel && !flypage) {
        var head = document.getElementsByTagName('head')[0];
        var script = document.createElement('script');
        script.type = 'text/javascript';
        script.src = '/templates/CarKit/js/jquery-1.4.min.js';
        head.appendChild(script);        
    }
}

function clearSubmitForm() {
    $(':input').each(function () {
        var type = this.type;
        if (type == 'text' || type == 'password' || type == 'textarea')
            this.value = "";
    });
}

function sendSubmitForm() {  
    var checked = ($('#chkMailing:checked').val() == "on" ? "yes" : "no");
    $.post("/post/post.php", { name : $('#tbName').val(), email : $('#tbEmail').val(), postcode : $('#tbPostcode').val(), phone : $('#tbPhone').val(), time : $('#tbDayTime').val(), vehicle : $('#tbVehicle').val(), subscribe : checked }, function (data) {
   	    clearSubmitForm();
   	    alert("Thank you, your enquiry has been sent.");
   	});
}






   		





