﻿$(function() {
    //format tables with id=formattable need style.css
    $("#formattable tr:first").addClass('tabletitle');
    $("#formattable tr").filter(":even").not(":first").addClass('tableevenrows');
    $("#formattable tr:odd").addClass('tableoddrows');
    $("#formattable td").css("border", "solid 1px lightgrey");

//    //menu hover out effect
//    var pos = $(".topmenuitem").position();
//    $("#motionimg").css("opacity", "0", "width", "0", "left", pos.left, "top", pos.top);
//    $(".topmenuitem").hover(function(e) {
//        var pos = $(this).position();
//        var wid = $(this).width() + 10;
//        $("#motionimg").stop().animate({ "opacity": "1", "left": pos.left, "width": wid, "top": pos.top - 5 });
//    }, function() {
//        $("#motionimg").stop().animate({ "opacity": "0" },2000);
//        $(this).fadeOut(150);
//        $(this).fadeIn(450);
//    });

});

