﻿/* Copyright Eonicweb 2011- Dan Meek */
$(document).ready(function () {

    // 
    $('.LinkDescContainer').hide();
    // toggles slideup the sub links on hover 
    $('.linkGrid').hover(function () {
        if ($(this).find('.LinkDescContainer').size() > 0) {
            $(this).find('.LinkDescContainer').slideDown();
            $(this).find('.linkGridTitle').fadeOut();
        }
    }, function () {
        if ($(this).find('.LinkDescContainer').size() > 0) {
            $(this).find('.LinkDescContainer').slideUp();
            $(this).find('.linkGridTitle').fadeIn();
        }
    });

});

