// kasikara web sayfasi - genel jquery kodlari
$(window).bind("load", function() { 
//---------------------------------------acilis								
	$(document).ready(function () {
		
		$(".bilgilendirme_kutulari").hide();
  		
	}); // end of $(document).ready(function () {

//----------COMMENTS
$("#add_comment").css("cursor","hand").css("cursor","pointer");
$("#comment_box").css("cursor","hand").css("cursor","pointer");

//----------SIYAH ARKAPLAN
$("#add_comment").click(function(){
       		$("#siyah_arkaplan").fadeIn();
			islemkutu('comment_form_goster', 'comment_form.php', 'askoftuba')
   		});



$("#kapat").click(function () {
    $("#siyah_arkaplan").fadeOut();
  });


//----------NAVIGASYON
$(".n1").mouseover(function(e){
       		var x = e.pageX - this.offsetLeft;
			var y = e.pageY ;
			$("#icon").css("top",y-295);
   		});


}); // end of $(window).bind("load", function()



