jQuery(document).ready(function() {
	$.ajax({
		type: "GET",
		url: "./xml/floorguide.xml",
		dataType: "xml",
		success: setSidemenu
    });
	$.ajax({
		type: "GET",
		url: "./xml/hours.xml",
		dataType: "xml",
		success: setHours
    });
	$('#slide_wrap').slidepane();
});


function setSidemenu(xml) {
	var items = new Array();
    $(xml).find("shop").each(function () {
    	if ($(this).text() != '') {
			$('#floor_'+$(this).attr('floor') +' ul').append('<li><a href="floor_detail.html?'+$(this).attr('floor')+'-'+$(this).attr('id')+'" class="detailpopup">' + $(this).attr('japanese') + '</a></li>');
	    } else {
	    	$('#floor_'+$(this).attr('floor') +' ul').append('<li>' + $(this).attr('japanese') + '</li>');
	    }
    });
	$('#floor_wrapper .inner').accordionmenu();
	jQuery(".detailpopup").colorbox({iframe:true, innerWidth:'650px', innerHeight:'700px', transition:"fade"});
}
function setHours(xml) {
    $('#hours_data').html($(xml).find("hours").text().replace(/\n/g,"<br>"));
    $('#holiday_data').html($(xml).find("holiday").text().replace(/\n/g,"<br>"));
}

