jQuery().ready(function(){
	
		jQuery('.closeBtn').click(function(){
				
				jQuery('#forum_help').hide('fast');
				jQuery('#forum_simple_search').show('fast');
				
				return false;			
			
			});

		jQuery('.collapseBtn').click(function(){
				
				jQuery('#forum_simple_search').show('fast');
				jQuery('#forum_advanced_search').slideUp('fast');
				
				return false;
			
			});	

		jQuery('.forumHelpAdvancedBtn').click(function(){
				
				jQuery('#forum_help').show('fast');				
				jQuery('#forum_simple_search').hide('fast');
				jQuery('#forum_advanced_search').hide('fast');
				
				return false;
			
			});	
	

		jQuery('.advancedBtn').click(function(){
				jQuery('#forum_simple_search').slideUp('fast',function(){
							jQuery('#forum_advanced_search').slideDown('fast')
						}); 
					
				return false;
			
			});		
	
		jQuery('.forumHelpSimpleBtn').click(function(){			
				jQuery('#forum_simple_search').slideUp('fast', function(){							
							jQuery('#forum_help').show('fast');
						});
				
				return false;
			
			});		
	
	
	});