/* -----------------------------------------------------
	リストのロールオーバー
---------------------------------------------------- */

$(function(){
	$('.tmpList li div').mouseover(function(){
		$(this).addClass('onList');
		$('.onList img').fadeTo(0,0.5);
	});
	$('.tmpList li div').mouseout(function(){
		$('.onList img').fadeTo(0,1);
		$(this).removeClass('onList');
	});
});

Shadowbox.loadSkin('classic', '/_common/js/shadowbox-2.0/src/skin/');
Shadowbox.loadLanguage('en', '/_common/js/shadowbox-2.0/src/lang/');
Shadowbox.loadPlayer(['img'], '/_common/js/shadowbox-2.0/src/player/');
$(function(){
	Shadowbox.init();
});

