﻿$(document).ready( function()
{
    /**************************************************************************
    * Author:       Rich Calzada
    * Created Date: 2008.xx.xx
    * Description:  Handles all the functionality for the Block: Crumbs
    ***************************************************************************/
    //If advanced hidden is true then apply
    if ($('.hdnCrumbAdvanced > input').val() == "True")
    {
        //Add advanced classes to the elements for the styling
        $('.BreadCrumbs ul').addClass('Advanced');
        $('.BreadCrumbs ul ul').removeClass('Advanced');
        $('.CrumbsBox').hide();
        
        //Add the hover handler to show the sub items
        $('.Crumb').hover(
            function()
            { 
                $('#Links' + ($(this).attr('id')).substring(5)).show('fast');   
            },        
            function()
            {
                $('#Links' + ($(this).attr('id')).substring(5)).hide('fast');  
            }
        );
    }
});
