jQuery(document).ready(function() {
	if(jQuery('form', '#LoginPanel').is(':visible')) {
		jQuery('#LoginPanel').hide();
		jQuery('#LoginPanel').after('<a id="LoginButton">&#x25BE</a>');
	}
	
	jQuery('#LoginButton').click(function(){
		jQuery(this).toggleClass('active');
		jQuery('#LoginPanel').slideToggle('fast');
		if(jQuery('#LoginButton').css('top') == '0px')
			jQuery('#LoginButton').html('&#x25B4').stop().animate({
				top: '37px'
			}, {queue:false, duration:'fast'});
		else
			jQuery('#LoginButton').html('&#x25BE').stop().animate({
				top: '0px'
			}, {queue:false, duration:'fast'});
		return false;
	});

});