﻿$(document).ready(function() 
{
	$(".add_question").click(function()
	{	
		
		hostnamepath = window.location.protocol + '//' + window.location.hostname;		
		if($("#form_question").length == 0)
		{				
			$.ajax({							   
				   url: hostnamepath + '/index.php/question_answer/add_question',						   
				   type: "GET",
				   success: function(result)
				   {						
						$("#mainContainer").append(result);										
				   }
			});			
		}
		else if($("#form_question_cont").is(":visible") == false)
		{
			$("#form_question_cont").dialog({width: 520,title: "Задать вопрос", resizable: false});
		}		
		return false;			
	});
});
