/***************************************************************************
 * @Author: NetChillies - PepUp The Web!
 * @Website: http://www.netchillies.com/
 * @Contact: http://www.netchillies.com/contact
 * @Privacy Policy & Terms of Use: http://www.netchillies.com/terms
 * @License Info: http://www.netchillies.com/license
 ***************************************************************************/

var j = jQuery.noConflict();

j(document).ready(function(){
    
    j('.home-page-widget').each(function(index) {
        j(this).addClass('floatleft number-' + index);
    });

j('.login-popup').click(function(){
        j("#lightbox, #lightbox-panel").fadeIn(300);        
        j('#lightbox, #lightbox-panel').removeClass('hidden');
        return false;
    });

    j("a#close-panel").click(function(){
        j("#lightbox, #lightbox-panel").fadeOut(300);
        return false;
     });


//    if (j(".fm-error").length > 0)
//    {
//        var classname = j('.fm-error').closest('div').attr('class');
//        if(classname == 'login-form-pop'){
//            j("#lightbox, #lightbox-panel").fadeIn(300);
//            j("#lightbox2, #lightbox-panel2").fadeOut(300);
//            j('#lightbox, #lightbox-panel').removeClass('hidden');
//            return false;
//        }
//    }

});
