function changeUrls(srt) {
	$('a.neshto').each(function() {
		if($(this).rel !=1 ) {
			$(this).removeClass('currentpage');
		} else {
			$(this).addClass('currentpage');
		}
	});
}

$(function() {
	$.easy.popup();
	$("a.neshto").click(function() {
		var thisrel = $(this).attr('rel');
		
		$("a.neshto").each(function() {
			if($(this).attr('rel') == thisrel) {
				$(this).addClass('currentpage');
			} else {
				$(this).removeClass('currentpage');
			}
		});
	});
	
	$("a#not1").toggle(
		function() {
			$("#notify1").fadeIn(700);
		},
		function() {
			$("#notify1").fadeOut(700);
		}
	);
	
	$("a#not2").toggle(
		function() {
			$("#notify2").fadeIn(700);
		},
		function() {
			$("#notify2").fadeOut(700);
		}
	);
	
	$("#comments_form").css("display", "none");
	$("#add_comment").toggle(
			function() {
				$("#comments_form").fadeIn(500);
			},
			function() {
				$("#comments_form").fadeOut(500);
			}
	);
});