/*
 * JS pro webovou cast
 *
 *
 */
 
$(document).ready(function () {
 	$('#soucet').parent().parent().hide();
    $('#soucet').val('5');
    
    $("a.external").click(function(){
		window.open($(this).attr('href'));
		return false;
	});
	
	$('a[href$="jpg"], a[href$="jpeg"], a[href$="gif"], a[href$="png"], a[href$="JPG"], a[href$="JPEG"], a[href$="GIF"], a[href$="PNG"]').fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Obrázek ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
	$("a.external").click(function(){
		window.open($(this).attr('href'));
		return false;
	});
    
}); 
