jQuery(document).ready(function()
{
    jQuery('.mainMenu .container').hover(function()
    {
        $(this).children('a').addClass('hover');
        $(this).children('ul').removeClass('hidden');
        $(this).children('.empty').addClass('hidden');
    },
    function()
    {
        $(this).children('a').removeClass('hover');
        $(this).children('ul').addClass('hidden');
        $(this).children('.empty').removeClass('hidden');
    });

    jQuery('#sponsorsCycle').cycle();
    
});
