$(document).ready(function(){

$('a#gallery').fancybox({
				'titleShow'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
			});

	$('a[rel=gallerys]').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>';
				}
			});


   $('.guest1').bind("click", function(){
         
            var href = $(this).attr('href');
            $('#content').fadeOut(function(){
        	$(this).load(href+"&ajax=1",
        	    function(){
        		$(this).fadeIn();
        	})
    	    });
                 return false;
        
        
        
        });
        });


