﻿/// <reference name="MicrosoftAjax.js" />
/// <reference name="prototype.js" />

function InitJQuery() {
    $j(document).ready(function() {
        HideAnchors();
    });
}

function HideAnchors() {
    ///<summary>hides anchor tag when clicked</summary>
    ///<returns>void</returns>
    $j("a").click(function(event) {
        event.preventDefault();
        $j(this).hide("slow");
    });                
}
