var root 	= "/galeriler/";
var loading = '<div class="loading"></div>';
$(document).ready(function() {
	$('#gallerylist .g_info').hide();
	$('#gallerylist li').hover(function() {
		$(this).children('.g_info_arrow').hide();
		$(this).children('.g_info').slideDown('fast');}, function() {$(this).children('.g_info').slideUp('fast');$(this).children('.g_info_arrow').show();});
	
	$("#tabs a").click(function() {$("#tabs a").removeClass("active");$(this).addClass("active");$("#comments>div").hide();
		var div = $(this).attr("rel");		
		$("#" + div).show();
		return false;
	});	
	
	$("#commentform").submit(function() {
		$("#writecomment").prepend(loading);$("#submit").attr("disabled", true);$("#writecomment .messages").remove();
		var inputs = new Object;$(':input', this).each(function() {inputs[this.name] = this.value;});
		$.ajax({type : "POST",data : inputs,url : root + "tasks.php?task=addcomment",success : function(msg) {
				$(".loading").remove();$(".error").remove();if(msg == "ok") {
					$("#writecomment").prepend('<div class="messages done"><b>Yorumunuz alındı!</b></div>');$("#commentform").remove();
				} else {
					$("#writecomment").prepend(msg); 
				}
				$("#submit").attr("disabled", false);
			}
		});
		return false;
	});
});