// window.onload
$(function(){

    /*startReForm(); // so we don't have to us body onload*/
    var elements = "input[@type=text], input[@type=password], textarea, select";
    $(elements).addClass("inputElement");
    
    if ($.browser.msie) {
        $(elements).focus(function(){
            $(this).addClass("inputElementFocus");
        });
        $(elements).blur(function(){
            $(this).removeClass("inputElementFocus");
        });
    }

    if (top.location != self.location) {
        var height = $("body").height();
        iframe = top.document.getElementById("freedom_frame");
        $(iframe).height(height + 20);
        $(iframe).attr("scrolling", "no");
    }

});