/**
 * @author nadia.mietkiewicz
 */
$(document).ready(function(){
	   });
function showPrelegentMore($id) {
	$('.prelegent .showLink:not(#more-link-'+$id+')').show();
	$('.prelegent .showLink#more-link-'+$id).toggle();
	
	$('.prelegent .hideLink:not(#less-link-'+$id+')').hide();
	$('.prelegent .hideLink#less-link-'+$id).toggle();
	
	
	$('.prelegent-more:not(#more-'+$id+')').slideUp(300, function() {});
	$('.prelegent #more-'+$id).slideToggle(300, function() {});

}


function playVideo(element) {
	try {
	var params = { allowfullscreen: "true", allowscriptaccess: "always", wmode: "transparent" };
	var attributes = { id: "longtail", name: "longtail" };
	var flashvars = {
		file: $(element).attr('href'),
		width: "300",
		height: "255",
		controlbar: "over",
		playlist: "none",
		skin: "http://www.pracujtube.com/player.swf",
		autostart: "true",
		bufferlength: "1",
		displayclick: "play",
		icons: "false",
		linktarget: "_blank",
		mute: "false",
		quality: "true",
		repeat: "none",
		resizing: "true",
		shuffle: "false",
		stretching: "fill",
		volume: "90",
		aboutlink: "http://www.longtailvideo.com/players/"
	 };
	swfobject.embedSWF("http://www.pracujtube.com/player.swf", "player", "300", "225", "9.0.0","http://www.pracujtube.com/player.swf", flashvars, params, attributes);
	} catch (e) {alert(e); }
}