$(function() {
 if ($.cookie('username')) {
     $(".MMDataCaptureForm_Input:eq(0)").attr("value",$.cookie('username'));
     $.cookie('username','');
 }
 $("textarea").attr("style","height: 80px;");  
 $("#contact textarea").attr("style","height: 150px;");
 $(".NavigationMenu td:nth-child(1)").css("padding-left","39px").css("background","#fff");
 $(".NavigationMenu td:nth-child(7)").css("padding-right","9px").css("background","#fff");
 $(".NavigationMenu td:nth-child(7) .divide").css("display","none");
 if (($.browser.msie)) { $(".MMDataCaptureForm_LabelTD span:last").css("margin-top","-40px").css("position","relative"); }
 $(".MMDataCaptureForm_SubmitButton").click(function(){
    var userName = $(".MMDataCaptureForm_Input:eq(0)").attr("value");
    $.cookie('username', userName);
 });
});