/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var isclosed = true;

function changeTheWholeShit()
{
    if (isclosed)
    {    
        new Effect.Morph('pusher', { style: 'height: 132px;'});
        new Effect.Morph('contactos', {style: 'height: 200px;'});
        isclosed = false;
    }
    else
    {
        new Effect.Morph('pusher', { style: 'height: 282px;'});
        new Effect.Morph('contactos', {style: 'height: 50px;'});
        isclosed = true;
    }    
}


