﻿// Author: Chris McCarran
// Last Modified: 01/26/09

$(document).ready(function() {
    $(".cmenuLink").cMenuInit();
});

jQuery.fn.extend({
    cMenuInit: function() {
        return this.each(function() {
            $(this).hover(
                function() { $(".cmenu ul", this).show(); },
                function() { $(".cmenu ul", this).hide(); }
            );
        });
    }
});
