function initDialog(dialogId){
	$("#"+dialogId).dialog({
		bgiframe: false,
		width: 730,
		height: 550,
		modal: true,
		autoOpen: false
	});
	
	$("div.ui-dialog-titlebar").prepend('<div id="dialogTitle_itemName"></div>');
	$("span.ui-icon-closethick").html('Sulje');
}

function initLocalMap(){
	$(".localMap_mapItem").each(function(index, element){
		var curId = $(this).attr('id');
		
		$(this).hover(
			function(){
				$(this).addClass('localMap_mapItemHover');
			},
			function(){
				$(this).removeClass('localMap_mapItemHover');
			}
		);
		
		$(this).click(function(){
			var postItem = new Object();
			postItem.itemId = curId;
			postItem.language = siteLanguage;

			$("#localMap_dialogContent").load('/data/localMapItem.php', postItem , function(response, status, xhr){
				if(status == "success"){
					var itemOrderNumber = $("#"+curId+" div.mapItem_itemContent").html();
					var itemTitle = $("#"+curId+" div.mapItem_itemWrapper").attr('title');
					
					$("#dialogTitle_itemName").html('<div class="dialogTitle_itemOrderNumberWrapper">'+itemOrderNumber+'</div><div class="dialogTitle_itemTitleWrapper">'+itemTitle+'</div><div class="clearer"></div>');
	
					$("#"+localMap_dialogId).dialog('open');
				}
			});

		});
	});
}
