jQuery.noConflict();
jQuery(document).ready(function() {
	
	// Expand Panel
	jQuery("#open").click(function(){
		jQuery("div#panel").slideDown("slow");
		jQuery('#result').hide()
	
	});	
	
	// Collapse Panel
	jQuery("#close").click(function(){
		jQuery("div#panel").slideUp("slow");
		
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	jQuery("#toggle a").click(function () {
		jQuery("#toggle a").toggle();
	});
	
	jQuery().ajaxStart(function() {
        jQuery('#loading').hide();
        jQuery('#result').hide();
    }).ajaxStop(function() {
        jQuery('#loading').hide();
        jQuery('#result').fadeIn('slow');
		jQuery("#result").animate({opacity: 1.0}, 5000).fadeOut('slow');
				
    });
    jQuery('#form, #fat, #fo3').submit(function() {
        jQuery.ajax({
            type: 'POST',
            url: jQuery(this).attr('action'),
            data: jQuery(this).serialize(),
            success: function(data) {
                jQuery('#result').html(data);

            }
        })
        
        return false;
    }); 
		
});