Cufon.replace('h1, h2, h3');

var RTS = new Object();
var $j = jQuery.noConflict();

RTS.show = function(divid) {

    if ($j('#registrationForm').css('display') == 'block')
        $j('#registrationForm').animate({ height: 'toggle' }, 'fast');



    if ($j(divid).css('display') == 'none')
        $j(divid).animate({ height: 'toggle' }, 'fast');

}
