/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
jQuery(document).ready(function() {
var tit = $('h1').filter(":first");
$('#title').html(tit.html());
tit.hide();
$('table').each(function()
{
    $(this).attr("border", "0");
});
});

