$(document).ready(function(){
    
    //Show hover over color on all tables with .stripeme
    $("tr").hover(
        function () {
            $(this).toggleClass('hover');
        },
        function () {
            $(this).removeClass('hover');
        }
    );

    //show striping on all tables
    $("tr:odd").addClass('altrow');

    //Remove "Flash Messages" after specified time
    setTimeout(function() {
        $("#flashMessage").fadeOut("200")
    }, 1000);

    //initialize the calendar pop-ups
    $('.datepicker').datepicker({ dateFormat: 'yy-mm-dd'});

    //initialize WYSISYG editor
    $('.wymeditor').wymeditor(); //end the wysiwyg
    

})