$(document).ready(function(){
	var loadPath = "./parts/recommend.html";
	if (isSubDirectory()) {
		loadPath = "../parts/recommend_s.html";
	}
	$("#recommned").load(loadPath,"",function(){
		$("#recommned .recommend_items .show_summary").click(function(){
			$(this).hide();
			$(this).siblings(".hide_summary").show();
			$(this).parent().siblings(".item_summary").show();
			return false;
		});

		$("#recommned .recommend_items .hide_summary").click(function(){
			$(this).siblings(".show_summary").show();
			$(this).hide();
			$(this).parent().siblings(".item_summary").hide();
			return false;
		});
	});
});