$(function() {
	
	
	// Menu
	$("#menu ul").superfish({ 
    	hoverClass:  'menuOver',          						// the class applied to hovered list items 
			delay:       400,                            // one second delay on mouseout 
			animation:   { opacity: 'show', height:'show'},  // fade-in and slide-down animation 
    	disableHI:   false,	              						// set to true to disable hoverIntent detection 
			speed:       'normal',                          // faster animation speed 
			autoArrows:  false,                           // disable generation of arrow mark-up 
			dropShadows: false                            // disable drop shadows 
	});
	
	
	// Textarea
	$('.commento textarea').autogrow({
		minHeight: 30,
		lineHeight: 16
	});
	
	
	// Media
	$.fn.media.defaults.flvPlayer = '/comune/player/mediaplayer-viral/player-viral.swf';
	$.fn.media.defaults.mp3Player = '/comune/player/mediaplayer-viral/player-viral.swf';
	$('.media-audio').media( { width: 429, height: 20, autoplay: true } ); 
	$('.media-video').media({ 
		width: 			470,
		height: 		320,
		autoplay: 	true,
		bgColor:		'#000000'
	});
	
							
});
	
// Tiny MCE
tinyMCE.init(
{
	mode : "textareas",
	theme : "simple",
	width: "354px",
	editor_selector : "mceSimple"
});
tinyMCE.init(
{
	mode : "textareas",
	theme : "simple",
	width: "354px",
	height: "450px",
	editor_selector : "mceSimpleTall"
});
tinyMCE.init(
{
	mode : "textareas",
	theme : "advanced",
	width: "354px",
	height: "450px",
	editor_selector : "mceAdvanced",
	/*force_br_newlines : true,
        forced_root_block : ''*/

});