    jQuery(document).ready(function() {
    $(".tmunot").fancybox({
        'width': '60%',
        'height': '80%',
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe'
    });
     $("a[rel=example_group]").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>';
            }
        });
    $(".mabamalon").fancybox({
            'width': '45%',
            'height': '80%',
            'autoScale': false,
            'transitionIn': 'none',
            'transitionOut': 'none',
            'type': 'iframe'
        });
        $(".mabajadarim").fancybox({
            'width': '45%',
            'height': '80%',
            'autoScale': false,
            'transitionIn': 'none',
            'transitionOut': 'none',
            'type': 'iframe'
        });
		$("#various2").fancybox({
		    'width': '90%',
		    'height': '90%',
		    'modal': false,
			onStart : function(){
				$("#various2div").show();
			}, onClosed:function() { $("#various2div").hide(); }
		});
		$("#various1").fancybox({
		    'width': '90%',
		    'height': '90%',
            'modal' : false,
			onStart : function(){
				$("#various1div").show();
			}, onClosed:function() { $("#various1div").hide(); }
		});
		
	});
