/* -----------------------------------------------------
	sitePaxテンプレートリストのロールオーバー
---------------------------------------------------- */

$(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', '/_bPax/js/shadowbox-2.0/src/skin');
Shadowbox.loadLanguage('en', '/_bPax/js/shadowbox-2.0/src/lang');
Shadowbox.loadPlayer(['img', 'html'], '/_bPax/js/shadowbox-2.0/src/player');
$(document).ready(function() {
    Shadowbox.init();
});
