// ----- Pulldown menu -----

$().ready(function() {

  $('#nav>li').hover(function () {
    $('ul', this).stop(true,true).slideDown(100);
  }, function () {
    $('ul', this).slideUp(100);
  });

});

// ----- Lightbox -----



$(document).ready(function() {	
	$("a.fancybox").fancybox();
		
});

$(document).ready( function(){ 
    $('#events').innerfade({ 
        animationtype: 'fade', 
        speed: 500, timeout: 5000, 
        type: 'random',
        containerheight: 'inherit' 
    });
});
