$(function(){
	//--- サイドバー
	// サイドボックスの下線を引く
	$('.sidebox').after('<div class="sidebox_bottom">&nbsp;</div>');
	
	// こだわり条件のアイコンを割り当て
	$('#special li a').css('background',function(){
		return 'url(/img/rent/common/icon/'+$(this).parent().attr('class')+'.png) 0px 50% no-repeat';
	});

	// こだわり条件の最後のLIの下線を取る
	$('#special li:last').css({ border:'none', height:'52px' });

	// こだわり条件ロールオーバー
	$('#special li').mouseover(function(){
		$(this).css({ background:'#DDFFCC', cursor:'hand' });
		$(this).data('href',$(this).find('a').attr('href'));
//		$(this).find('a').attr('href','javascript:void(0)');
	});
	$('#special li').mouseout(function(){
		$(this).css('background','none');
	});

	// こだわり条件リンク
	$('#special li').click(function(){
		open($(this).data('href'),'_self');
	});
});

