$(document).ready(function() { 
	$('#addComment .login').click(function(event) { 
	  event.preventDefault(); 
	  $('#addComment > .content').load(this.href); 
	}); 
	
	$('#addComment .comment').click(function(event) { 
	    event.preventDefault(); 
	    $('#addComment > .content').load(this.href); 
	});
	
	$(document).ajaxStop(function(){
		tinyMCE.init({
				theme : "advanced",
				skin : "veo-design",
				mode : "textareas",
				relative_urls : false,
				plugins : "emotions",
				theme_advanced_buttons1 : "bold,italic,underline,separator,bullist,numlist,separator,outdent,indent,separator,separator,undo,redo,separator,hr,separator,styleselect,separator,emotions",
				theme_advanced_buttons2 : "",
				theme_advanced_buttons3 : ""
		});
	});
	
	$('#addComment > .loading').ajaxStart(function() { 
	  $(this).show(); 
	}).ajaxStop(function() { 
	  $(this).hide(); 
	}); 
});