/***************************************************************
 * JavaScript effects for http://webpresso.net                 *
 *                                                             *
 * (c) 2009-10 Raphael Kallensee                               *
 *                                                             *
 * This site uses the mootools framework (http://mootools.net) *
 * which is available under the MIT license.                   *
 *                                                             *
 * Feel free to use my code under the CC-BY-SA license         *
 * http://creativecommons.org/licenses/by-sa/3.0/deed.de       *
 ***************************************************************/

$(document).ready( function() {
    
    $('#imprint').hide();
    
    $('#imprintToggler, #imprintTogglerMail, .imprintToggler').click( function( e ) {
        if( $('#imprint').is(":hidden") ) {
            $(this).addClass('open');
        } else {
            $(this).removeClass('open');
        }
        $('#imprint').slideToggle();
        return false;
    } );
    
} );
