$(document).ready(function(){   
    	$("a[rel=gal1]").fancybox({
	      'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
	
    	});
	
	$("a[rel=gal2]").fancybox({
	      'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
	
    	});
	
	$("a[rel=single]").fancybox({'titlePosition' 	: 'over'});
	$("a.news_foto").fancybox({'titlePosition' 	: 'over'});  
	$("a.iframe").attr({ target: "_blank" });    
	
	$("input.radio_sel").click(function() {
     var pobocka =  $(this).attr("name") ;
     var hodnota =  $(this).val();    
     $("#msg").load("pobocka.php?pobocka="+pobocka+"&hodnota="+hodnota, function(){
        //alert('updated');
			});
     
   });

  
});



