$(function(){
//	$('#call_me').click(function(){
//		$('#call_me_box').show();
//		return false;
//	});
	$('#call_staff,#call_me,#paper_cat,#comments').click(function(){
		$('#'+this.id+'_box').show();
		return false;
	});
	
	
	$('.close_popup_form').click(function(){
		$(this).parent().parent().hide();
		return false;
	});
	
	$('#call_me_form,#call_staff_form,#paper_cat_form,#comments_form').submit(function(){
		var el=this;
		$.post(this.action,$(this).serialize(),function(res){
			if(res.err){
				var text='';
				for(var i in res.err){
					text+=res.err[i]+'\n';
				}
				if(text){
					alert(text);
				}else{
					$('table',el).hide();
					$('.success',el).show();							
				}
			}	
		},'json')
				
		return false;
	});
});	
