$(document).ready(function()
{
	$("#vf1").validate();
	$("#vf2").validate();
	$('.white').click(function(e)
	{
		e.preventDefault();
		var self = $(this);
		var input = $(self).parent().children('.input');
		
		
		if (self.is('.in'))
		{
			$(input).slideUp('slow');
			$(self).removeClass('in').addClass('out');
		}
		else
		{
			$(input).slideDown('slow');
			$(self).removeClass('out').addClass('in');
		}
	});
	$('.show_popup').click(function(e)
	{
		e.preventDefault();
		var id = $(this).parent().parent().children('#expert_id').val();
		$('.expert_'+id).show();
	});
	$('.exit').click(function(e)
	{
		e.preventDefault();
		$(this).parent().parent().hide();
	});
});
