/**/
loadFile = function(){
$("#catg a").live('click',function(){
var filePath = $(this).attr("href").split("#")[1];
$("#page").hide();
$("#page").load(filePath).show("slow");
});
};

hideFile = function(){
$('#main img').click(function() {
$('#page').hide("slow");
});
};


$(document).ready(function(){
loadFile();
hideFile();
});

