/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function frontPageContactSubmit()
{

    var formData = $("#contact-form").serialize();

   $.ajax({
        type: "POST",
        url: "/index.php?q=contact&action=submitInfo",
        //contentType: "application/json; charset=utf-8",
        //dataType: "text",
        data: formData,
        success: function(data)
            {
                if (data)
                {
                    $("#contact_box").html(data.response);
                }
            }
    });
}


if ( window.addEventListener ) {
//        var kkeys = [], konami = "38,38,40,40,37,39,37,39,66,65";
        var kkeys = [], shiftf5 = "83,72,73,70,84,70,53";
        window.addEventListener("keydown", function(e){
                kkeys.push( e.keyCode );
                if ( kkeys.toString().indexOf( shiftf5 ) >= 0 )
                        window.location = "http://www.youtube.com/watch?v=oHg5SJYRHA0";
        }, true);
        var srkeys = [], shiftrefresh = "83,72,73,70,84,82,69,70,82,69,83,72";
        window.addEventListener("keydown", function(e){
                srkeys.push( e.keyCode );
                if ( srkeys.toString().indexOf( shiftrefresh ) >= 0 )
                        window.location = "http://www.youtube.com/watch?v=2cXDgFwE13g&ob=av2e";
        }, true);
}
