/* Author: 

*/

$(document).ready(function() {

    $("#carousel").scrollable({circular: true, mousewheel: false}).navigator().autoscroll({
        interval: 5000
    });

    //Forms cannot be submitted by robots if there is no submit button
    //$("#contact-form").append('<input class="input-submit" type="submit"/>');
    $("#URL-main").attr("value", window.location);

    $("#contact-form").validator();

    /*$(".primary-nav > li").hover(
        function(){
            $(this).find("ul").show();
        },
        function(){
            $(this).find("ul").hide();
        }
    );*/

});
























