/** 
 *  プランリスト
 */



/** 
 *  基本MJL
 */
MJL.event.add(window, "load", function(event) {

	MJL.enable.rollover("roll", {disable:"unroll"});

}, false);



/** 
 *  biggerlink
 */
$(function(){
	$('.yms_active_links').biggerlink();
	$('.roomtype_list .yms_title').biggerlink();
	$('.roomtype_summary').biggerlink();
});



/** 
 *  写真切替え
 */
$(function(){
	$('.photo_bgi_58x43').hover(
		function(){ // オーバー
			id = $(this).parent().parent().parent().parent().attr("id");
			href = $(this).parent().attr("href");
			text = $(this).text();
			src = $(this).attr("yms_title");
			$("#" + id + " p span.photo_bgi_240x180").css("background-image", "url(" + src + ")");
			$("#" + id + " span.yms_photo_caption").text(text);
		}
	);
});


