/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

var load = '<div class="load"><span><img src="/images/load.gif" /></span></div>';
var switchTo5x=true;

$(document).ready(
    function()
    {
        $('body').delegate( '.fz-disappear', 'click', function()
        {
            $(this).fadeOut(400);
        });
        
        $('body').delegate( '.login-click', 'click', function()
        {
            $(this).parent().toggleClass('hover');
            return false;
        });
    });

