/**
 * @author nadia.mietkiewicz
 */
$(document).ready(function(){
	
$("a[rel=gallery]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Zdjęcie ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
		}
	});

	$(".konfmenu h4").click(function() {
	$('.konfmenu ul').slideUp();
	$(this).parent().find('ul').slideDown();
		
	})
	
	   });
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); }
}


