// JavaScript Document
$(document).ready(function()
{
    if(window.opera)
    {
        if ($("a.bookmark").attr("rel") != "")
        {
            $("a.bookmark").attr("rel","sidebar");
        }
    }
    $("a.bookmark").click(function(event)
    {
        event.preventDefault();
        if (window.sidebar)
        {
            window.sidebar.addPanel(this.title, this.href, "");
        }
        else if(window.external)
        {
            window.external.AddFavorite(this.href, this.title);
        }
        else if(window.opera)
        {
            return false;
        }
        else
        {
            alert('Please bookmark this page manually.');
        }
    });
});