$(document).ready(function(){
$("#box_download tr:nth-child(odd)").addClass("blue");
$("#overlay").css("height",$(".maincontent").height()+40);

$("#profilpopup").css("position","fixed");

$("#profilpopup h3 a").click(function () {
$("#profilpopup").fadeOut("slow");
});
});

$(window).resize(function(){
$("#overlay").css("height",$(".maincontent").height()+40);
});

$(window).scroll(function () { 
$("#overlay").css("height",$(".maincontent").height()+40);
});

