$(function() {
	$('#fotogalerie a').lightBox({fixedNavigation:true});
});



$(document).ready(function(){

flowplayer("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.5.swf", {
plugins: {
		content: {
			
			// the only required property
			url: 'flowplayer.content-3.2.0.swf',
			
			// some display properties
			height: 18,
			padding:2,
			backgroundColor: '#112233',
			opacity: 0.8,
			
			// one styling property 
			backgroundGradient: [0.1, 0.1, 1.0],
			
			// content plugin specific properties
			html: '<p>reportáž na MetropolTV.cz</p>',
			style: {p: {fontSize: 10}}	
		}
	},
clip:  {
        autoPlay: true
    	},
		
onMouseOver: function() {		// set an event handler in the configuration
        this.setVolume(30);	// set volume property
	},

onMouseOut: function() {		// set an event handler in the configuration
        this.setVolume(0);	// set volume property
	}
			 
});

});
