$(document).ready(
	function()
	{	
		// TEXTLABEL
		$.fn.jLabel.defaults.opacity = 0.3;
		$(':text').jLabel();
		
		//ACCORDION
		//$(".accordion").accordion( { clearStyle: true, autoHeight: false, active: false } );
		$('.accordion .head').click(function() {
				$(this).next().toggle();
				return false;
			}).next().hide();
		
		//SHOW_HIDE
		var categories = [$("#certificates"), $("#events"), $("#purchases"), $("#membership")];
		var showHides = ["#show_hide_1", "#show_hide_2", "#show_hide_3", "#show_hide_4"];
		
		for ( var i = 0; i < categories.length; i ++ )
		{
			
			categories[i].hide();
				
			$(showHides[i]).slideDown( 200 );
			$(showHides[i]).click( function() {
				
				var id = $(this).attr('id');
				for ( j = 0; j < showHides.length; j ++ )
				{
					
					if ( showHides[j] != '#'+id )
					{
						$(showHides[j]).addClass('inactive').removeClass('active');
						categories[j].hide();
					}
					else
					{
						categories[j].slideDown( 200 );
						$(showHides[j]).addClass('active').removeClass('inactive');
					}
						
				}
			} );
		}
	}
	
);

jQuery(function($) { setTimeout(function() { $("#flashMessage").fadeOut("fast"); }, 3000); });
