$(function(){
var dhei=$(document).height()+"px";
var topm="-"+$(document).height()+"px";
$("#left-frame").css("height",dhei);
$("#right-frame").css("height",dhei);
$("#main section").css("height",dhei);

$("#main-nav li a").mouseover(function(){
$(">span",this).remove();
var data=$(this).attr("title");
$(this).append("<span>"+data+"</span>");
});
$("#main-nav li a").mouseout(function(){
$(">span",this).remove();
});

});
