$(document).ready(function() {
$("a[rel=gallery]").fancybox({
	'transitionIn' : 'elastic',
	'transitionOut' : 'elastic',
	'titlePosition' : 'over'
});
});

$(function() {
    if ($.cookie('axagym_akce')) {
        // it hasn't been three days yet
    } else {
        $.fancybox(
            {
            'width': 580,
            //'height': 395,
            'height': 590,
            'autoScale': true,
            'transitionIn': 'elastic',
            'transitionOut': 'elastic',
            'type': 'iframe',
            'scrolling': 'no',
			overlayOpacity : 0.4,
			overlayColor : '#777',
            'href': '/akce/aktualni-akce.php'
            }
        );
    }
	$.cookie('axagym_akce', 'true', { path: '/', expires: 10});
});


// Pruhlednost
$(document).ready(function(){
	$(".thumbs img").fadeTo("fast", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads

	$(".thumbs img").hover(function(){
		$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("fast", 0.6); // This should set the opacity back to 60% on mouseout
	});
});

