$(document).ready(function() { 

    // malsup.com/jquery/form/#code-samples
    var options = { 
        target:     '#form_echo',   // target element(s) to be updated with server response 
        type:      'post'
    }; 
 
    // bind to the form's submit event 
    $('#myform').submit(function() { 
        $(this).ajaxSubmit(options); 
        return false; 
    }); 
    
    // malsup.com/jquery/form/#code-samples
    var options1 = { 
        target:     '#form_echo1',   // target element(s) to be updated with server response 
        type:      'post'
    }; 
 
    // bind to the form's submit event 
    $('#myform1').submit(function() { 
        $(this).ajaxSubmit(options1); 
        return false; 
    }); 
    
    // malsup.com/jquery/form/#code-samples
    var options2 = { 
        target:     '#form_echo2',   // target element(s) to be updated with server response 
        type:      'post'
    }; 
 
    // bind to the form's submit event 
    $('#myform2').submit(function() { 
        $(this).ajaxSubmit(options2); 
        return false; 
    }); 
    
    // malsup.com/jquery/form/#code-samples
    var options3 = { 
        target:     '#form_echo3',   // target element(s) to be updated with server response 
        type:      'post'
    }; 
 
    // bind to the form's submit event 
    $('#myform3').submit(function() { 
        $(this).ajaxSubmit(options3); 
        return false; 
    });
    
    //carousel fix
    /*
    $('#img0').hover(function() {
      $("#li0").css('background-color', '#a6abad');
    }, function() {
      $("#li0").css('background-color', '#5D6A70');
    });
    */
    
}); 

