$(function()
{
	//FancyBox	
	/*
	$("a[rel='gallery']").fancybox({
		overlayOpacity: 0.6, 
		cyclic: true,
		transitionIn: 'elastic',
		transitionOut: 'elastic',
		titlePosition: 'over',
		titleFormat: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Obrázok ' +  (currentIndex + 1) + ' z ' + currentArray.length + ' - ' + title + '</span>';
		}

	});
	*/
	
	//Menu
	$('.lioweb-menu ul li').mouseover(function(){
		if (!$(this).hasClass('selected'))
			$(this).addClass('highlight');		 
	}).mouseout(function(){
		$(this).removeClass('highlight');		 
	});
	
	//PNGFix - Must be after calling rollover, at the end
	$.ifixpng('orchestra/libs/jQuery/ifixpng/images/pixel.gif');
	$('.png').ifixpng();
});

