	function harita()
	{
		igneler();
	}

	function igneler()
	{
		$('#harita').children('#batmis_igne').each(function(){
			var coords = $(this).attr('rel').split('-');
			//alert($(this)+' : '+coords[0]+' '+coords[1]); //-->Deneme göstergesi çalışıyor 
			$(this).css({left: coords[1] + 'px', top: coords[0] + 'px'}).fadeIn(1500);
		});


		//Siparişte sorulamadaki fatura adresini göstermektedir.!

		$('#harita').children('#batmis_igne_fatura').each(function(){
			var coords = $(this).attr('rel').split('-');
			var coordsX = parseInt(coords[1])-2;
			var coordsY = parseInt(coords[0])-2;
			$(this).css({left: coordsX + 'px', top: coordsY + 'px'}).fadeIn(1500);
		});		
	}

$(document).ready(function(){
	harita()
});
