﻿function submitform() {

    // Get all raw_ text inputs
    var allTextAreas = document.getElementsByTagName('textarea');
    for (i = 0; i < allTextAreas.length; i++) {
        var aDiv = allTextAreas[i];
        var sID = aDiv.id;
        if (sID.indexOf('raw_') == 0) {
            // Set textbox content to the related editable div content (id without leading raw_)

            document.getElementById(sID).value = document.getElementById(sID.substring(4)).innerHTML;
        }
    }

    document.getElementById("pageContent").submit();
}



//$(function() {
//    $(".datepicker").datepicker({ dateFormat: 'dd/mm/yy' });

//    var pic1 = new picture(1);

//    $('.picture').hover(function() {

//        var Id = $(this).attr('id');
//        var position = $('#' + Id + 'Holder').position();

//        pic1.getOverlayInfo(position, Id);
//        pic1.getLargeDiv();

//    }, function() {

//        // Slide down main img
//        var Id = $(this).attr('id');
//        $("#overlay").stop(true, true).hide();
//        $('#' + Id).stop(true, true).css({ "z-index": "0" });
//        $('#overlay').stop(true, true).css({ "height": "120px", "width": "350px" });

//    });

//    //slide up main img
//    $('.mainPicture').hover(function() {

//        $('#mainBackgroundImg').stop(true, true).animate({ "top": "-205px" }, 300)

//    }, function() {

//        $('#mainBackgroundImg').stop(true, true).animate({ "top": "0px" }, 300)

//    });

//});


