﻿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();
}

$(document).ready(function() {
$('.slidepic').css('clear', 'both');
$('.pics').css('width', '560px');
$('#top-banner').css('height', '199px');
$('#flash-banner').css('height', '199px');
$('#flash-banner').css('overflow', 'hidden');
    $('.pics').cycle({
        fx: 'fade',
        pause: 10,
        speed: 5000,
        random: 1,
        prev: '#prev',
        next: '#next'
    });

$('#flash-banner').hover(function() {
    $('#prev').css('display', 'block');
    $('#next').css('display', 'block');
    },
function() {
    $('#prev').css('display', 'none');
    $('#next').css('display', 'none');
});

});
