/**
* Function file
* 
*/


$(document).ready(function() {
    $("a.toplink").click(function() {
        if ($(this).hasClass("disabled"))
            return false;
        if ($(this).text() == "Home")
            return true;
            
        var toLoad = $(this).attr('href');
        $('#body').load(toLoad);

        return false;
    });

});
