$(document).ready(function(){
   $('.guest').bind("click", function(){
            var href = $(this).attr('href');
            $('.begin_content').fadeOut(function(){
        	$(this).load(href+"/ajax1",
        	    function(){
        		$(this).fadeIn();
        	})
    	    });
                 return false;
        });
        });



