// JavaScript Document
$(function() {
	var cssArr = new Array('ul.header_menu', 'ul.header_menu li.hm_active','h1.mb_title', 'h3.bar_title','h2.mb_title', 'div.about_box', 'span.sh_more', 'span.mb_book', 'span.cb_go', 'div.attraction_box', 'ul.footer_menu', 'span.cb_go a', 'ul.td_tab span', 'span.td_see_route', 'span.td_prochure', 'div.tour_sub div.main_box', 'div.tour_detail', 'div.tbook_submit', 'div.tbook_back', 'div.tb_plan1', 'div.tb_plan2', 'div.route_bottom div.main_box', 'ul.route_tab li');
	if (window.PIE) {
		for(var r in cssArr){
			$(cssArr[r]).each(function() {
				PIE.attach(this);
			});
	}
	}
});
$(function() {
	if ($.browser.msie && $.browser.msie < 8) {
       var zIndexNumber = 1000;
       // Put your target element(s) in the selector below!
       $("li").each(function() {
               $(this).css('zIndex', zIndexNumber);
               zIndexNumber -= 10;
       });
	}
});
