$(document).ready(function() {

	$(".kutu").mouseover(function() {
		$(this).removeClass()
		$(this).addClass("kutu_hover")
	});

	$(".kutu").mouseout(function() {
		$(this).removeClass()
		$(this).addClass("kutu")
	});

});



function Jump(Alan) { 
	if ( Alan != 0 ) { 
		window.location.assign( Alan.value ); 
	}
}

function GizleGoster(Kimlik,Cesit) {
	if (document.getElementById(Kimlik).style.display=='none') {
		$("#"+Kimlik+"").show(Cesit);
	} else {
		$("#"+Kimlik+"").hide(Cesit);
	}
}

function doFiyat(e, f) {
  if (f == "") {
	e = parseInt(e) + ""
  } else {
	if (f == " ") {
	  e = parseInt(e.replace(/ /g, "")) + ""
	} else {
	  if (f == ".") {
		e = parseInt(e.replace(/\./g, "")) + ""
	  } else {
		if (f == ",") {
		  e = parseInt(e.replace(/,/g, "")) + ""
		}
	  }
	}
  }
  var c = "";
  if (e.length > 3) {
	while (e.length > 3) {
	  c = f + e.substr(e.length - 3) + c;
	  e = e.substr(0, e.length - 3)
	}
	c = e + c
  } else {
	c = e
  }
  if (!c || c == "NaN") {
	c = ""
  }
  return c
}
