$(document).ready(function(){
	$("#flag_en").hover(function(e) {
		$("#entip:not(:animated)").fadeIn(200);
	}, function() {
		$("#entip").fadeOut(200);
	});

	$("a[rel=group1], a[rel=group2]").fancybox({
		'titlePosition' : 'inside',
		'padding' : '24',
		'overlayColor' : '#000',
		'titleFormat' : formatTitle2
	});

	$(".fancyboxIframe").fancybox({
		'width' : 956,
		'height' : 565,
		'padding' : 0,
		'margin' : 0,
		'autoScale' : false,
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic',
		'type' : 'iframe',
		'overlayColor' : '#000',
		'showCloseButton' : false,
		'titlePosition' : 'inside',
		'titleFormat' : formatTitle
	});

	$(".fancyboxIframe2").fancybox({
		'width' : 966,
		'height' : 520,
		'padding' : '0',
		'margin' : 0,
		'autoScale' : false,
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic',
		'type' : 'iframe',
		'overlayColor' : '#000',
		'showCloseButton' : false,
		'titlePosition' : 'inside',
		'titleFormat' : formatTitle3
	});

	$(".zoom a").click(function() {
		$(".productImg a").trigger('click');
	});

});

function formatTitle() {
	return '<div style="position: absolute; top: -547px; left: 920px;"><a href="javascript:;" onclick="$.fancybox.close();"><img src="http://www.superhifi.cz/img/showroom/closeButton.png" style="border: 0"></a></div>';
}
function formatTitle3() {
	return '<div style="position: absolute; top: -500px; left: 930px;"><a href="javascript:;" onclick="$.fancybox.close();"><img src="http://www.superhifi.cz/img/showroom/closeButton.png" style="border: 0"></a></div>';
}
function formatTitle2(title, currentArray, currentIndex, currentOpts) {
    return '<div style="padding-bottom: 10px; margin-top: -10px;">' + (title && title.length ? '<b style="display: block;">' + title + '</b>' : '' ) + ' (' + (currentIndex + 1) + '/' + currentArray.length + ')</div>';
}

