// Табове
$(function () {
	var tabContainers = $('div.tabs > div'); 
	tabContainers.hide().filter(':first').show(); 
	$('div.tabs ul.tabNavigation a').click(function () {
		tabContainers.hide(); 
		tabContainers.filter(this.hash).show(); 
		$('div.tabs ul.tabNavigation a').removeClass('selected'); 
		$(this).addClass('selected'); 
		return false; 
	}).filter(':first').click(); 
	$('div.answer').hide(); 
}); 

// Отговор на коментар
function answer(name, id) {
	var ctext = $("#comment").val();
	if ($("#comment").val() != "")
	ctext += "\n \n";
	ctext += "<a href='#comment-"+id+"'>"+name+"</a>, ";
	$("#comment").val(ctext);
	$('#comment').focus(); 
}

// Адрес на коментар
function commenturl(id) {
	window.location= "#comment-"+id+""; 
}




