<!--
var redaxo = true;

// jQuery is now removed from the $ namespace
// to use the $ shorthand, use (function($){ ... })(jQuery);
// and for the onload handler: jQuery(function($){ ... });
jQuery.noConflict();



// Eigene Funktionen
jQuery(function() {
	jQuery("#button_small").click(function() {
		jQuery("#loginbox_small").hide();
		jQuery("#loginbox_big").show();

		return false;	
	});

	jQuery("#button_big").click(function() {
		jQuery("#loginbox_big").hide();
		jQuery("#loginbox_small").show();
		
		return false;	
	});

});	
//-->


