﻿/* set height */
function FixHeight() {
    //alert($("#Content").height());
    $("#Content").height($(document).height() - 240);
    $("div.TCenterNoLeft").height($(document).height() - 270);
    
}
$(window).resize(FixHeight);
$(document).ready(FixHeight);

/* set focus */
$(function() {
$("fieldset :input:first[type!=hidden]").focus();
    $("*").focus(function() {
        $("*").removeClass('selected');
        $(this).addClass('selected');
    });
});


