jQuery(document).ready(function() {
    for (var i = 1; i <= 31; i++) {
          (function(index){
                jQuery("#idMenu" + index).tooltip({effect: 'slide', opacity: '1', delay:'200', offset:[0, 0], tip:'#toolTipIdMenu' + index }).dynamic({ bottom: { direction: 'down', bounce: true } });
          })(i);
    }
    jQuery('#events').jcarousel({
        auto:'5',
        wrap:'circular',
        animation:1000,
        scroll:1
    });

   jQuery('#navigation li a').hover(function() {
	    jQuery('.hover', this).stop().animate({'opacity': 1}, 700,'easeOutSine')},
        function() {jQuery('.hover', this).stop().animate({'opacity': 0}, 700, 'easeOutQuad')
	});

  jQuery('#trig').click().toggle(function() {
    jQuery('#facebook_handle').animate({width: '290'}, 'slow');},
     function() {
    jQuery('#facebook_handle').animate({width: '0'}, 'slow');
	});
});
