// JavaScript Document
$(function() {
	var cssArr = new Array('#content', 'ul.header_menu li.hm_home_active', 'li.hm_home_active a',  'div.sh_box_sub', 'h3.sh_box_title','div.sh_box_title', 'div.tp_item_img', 'span.tp_book', 'span.rb_view', 'div.td_bar_title', 'div.td_gallery', 'span.td_control', 'ul.td_tab span', 'div.td_other_img', 'span.mb_book', 'div.tb_plan1', 'div.tb_plan2', 'div.tbook_back', 'div.tbook_submit');
	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;
       });
	}
});
