jQuery(document).ready(function()
{
	jQuery('.hideNshow').hide().addClass('hidden');
	
	//jQuery('.hideNshow').children('form').hide();
	
	jQuery('.clicker').hover(function()
	{
		jQuery(this).addClass("hover");
	},function()
	{
		jQuery(this).removeClass("hover");
	});
	
	jQuery('.clicker').css("cursor","pointer").css("marginBottom","20px").click(function()
	{
		//search for a class name of hidden and return it
		/* var currentClass = jQuery(this).next('.hideNshow').attr('class').match('hidden');
		
		if(currentClass == null) //if hidden is not there...
		{
			//search for a class name of active and return it
			currentClass = jQuery(this).next('.hideNshow').attr('class').match('active');
		}
		
		//alert('currentClass = ' + currentClass);
		
		if(currentClass == 'hidden')
		{
			jQuery(this).next('.hideNshow').removeClass('hidden').addClass('active').slideToggle('slow', function()
			{
				jQuery(this).children('form').show('slow');
			}); //form can't slide toggle in IE
		}
		else if(currentClass == 'active')
		{
			jQuery(this).next('.hideNshow').removeClass('active').addClass('hidden').find('form').hide('slow', function()
			{
				jQuery(this).parent('.hideNshow').slideToggle("slow"); //form can't slide toggle in IE
			});
		} */
		
		jQuery(this).next('.hideNshow').slideToggle('slow');
	});
});