// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){

	/*jQuery('ul.sf-menu').superfish({
		delay: 500,                            // delay on mouseout 
        animation: {opacity:'show',height:'show'},  // fade-in and slide-down animation 
        speed: 'fast',                          // faster animation speed 
        autoArrows: false
	});*/
	
	jQuery('#events').cycle({ fx: 'scrollDown', sync: 0, delay: 2000, timeout: 4000 });
	
	jQuery(document).pngFix();

});


/* optional triggers

$(window).load(function() {
	
});

$(window).resize(function() {
	
});

*/
