/*
	誕生石説明分表示
*/

$(function(){
					 
					 
	var date = new Date(); 
	var month_str = date.getMonth() + 1;
	
	$("#jewel_box ul li").hide();
	$("#jewel_box ul li:eq(" + (month_str - 1)  + ")").show();
	
	$("#jewel_box").hide();
	
	var jewelBoxHeight = $("#jewel_box").height();
	
	$("#jewel_box").css("top", "-" + jewelBoxHeight + "px")
	
	$("#b_jewel_msg a").hover(function(){
		$("#jewel_box").show();
		return false;
	},function(){
		$("#jewel_box").hide();
		return false;
	});
});
