$(function(){
    
    /*
    $("#links li").not(".line").css({
        backgroundColor:"#00275C"
    });
    
    
    $("#links li").not(".line").hover(function(){
        $(this).stop().animate({
            backgroundColor:"#001D45"
        },200);
    },function(){
        $(this).stop().animate({
            backgroundColor:"#00275C"
        },200);
    });
    */
   
    $("#links li").not(".line").each(function(){
        $(this).prepend($("<div>",{
            'class':'menuHover'
        }));
    }).hover(function(){
        $(this).find(".menuHover").stop().animate({opacity:'1'},250);
    },function(){
        $(this).find(".menuHover").stop().animate({opacity:'0'},250);
    });
    
    //fill in forms
    $("input.name").formFiller({
        text:"Jméno"
    });
    $("input.surname").formFiller({
        text:"Příjmení"
    });
    $("input.email").formFiller({
        text:"E-mail"
    });
    
    //hide message box after mail is sent
    $(".okButton").click(function(){
        $(this).parents(".okBox").fadeOut("fast");
    });
    
    //scroll to the contact form
    if($(".okBox").size()){
        $('html, body').animate({
            scrollTop: $(document).height()
            },1);
    }
    
});
