$(document).ready(function(){ 

	// MENU	
	$(".menu ul").supersubs({ 
		minWidth:    15,
		maxWidth:    30	
	})
	.superfish({ 
		autoArrows:  false,
		dropShadows: false 
	}); 
	
	$(".moodbar").cycle({
		speed: 500,
		timeout: 4000,
		before: function(currSlideElement, nextSlideElement, options, forwardFlag) {
			$($(this).parent()).css({
				height: $(nextSlideElement).height()
			});
		}
	});
	
});
