//fancybox - skupina obrazku / iframe do okenka
$(document).ready(function() {

	$("a[rel=gallery]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'inside',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Obrázek ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});

 	$("a[rel=image]").fancybox();


	$("#iframe").fancybox({
		'width'				: '55%',
		'height'			: '55%',
		'autoScale'			: true,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});

	$("a[rel=swf]").fancybox({
		'width'				: '55%',
		'height'			: '55%',
		'autoScale'			: true,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});

	$("#flash").fancybox({
	  'padding'           : 0,
    'autoScale'     	: false,
    'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});

});

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href")) {
			switch (anchor.getAttribute("rel")) {
				case "external":
					anchor.target = "_blank";
					break;
				case "fotogalerie":
					anchor.href = "javascript:MM_openBrWindow('" + anchor.href + "','','width=670,height=520');";
					break;
				case "fotogaleries":
					anchor.href = "javascript:MM_openBrWindow('" + anchor.href + "','','scrollbars=yes,width=684,height=520');";
					break;
			}
		}
	}
}

window.onload = externalLinks;

