$(document).ready(function(){
	$("ul.nav").superfish({ 
		delay:       800,                            // delay on mouseout 
		animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
		speed:       'fast',                          // faster animation speed 
		autoArrows:  false,
		dropShadows: false
	});
});

function showVideo(flvFile,fWidth,fHeight,id,autoPlay,image) {
	var flashvars = {
		autostart : autoPlay,
		image : image,
		file : flvFile
	};
	var params = {
		wmode : 'transparent'
	};
	var attributes = {};

	swfobject.embedSWF('fileadmin/templates/flash/flvplayer.swf', id, fWidth, fHeight,"9.0.0",'',flashvars, params, attributes);
}