$(document).ready(function()
{
	//.sliderController .slider
	$('.sliderController').click(function()
	{
		$(this).next().stop().animate({opacity: 'toggle', height: 'toggle'}, 500);
		$(this).toggleClass('asking')
	});
});
