$(function(){

//作品画像に対してコンテクストメニューの表示をキャンセル（気休め）
$('.nocopy')
	.bind('contextmenu',function(e){ return false; })
	.attr('galleryimg', 'no'); // for ie6 image toolbar.

//可変グリッド
if ($('.grid').length) {
	$('.grid').vgrid({
		easeing: "easeOutQuint",
		time: 400,
		delay: 20,
		fadeIn: { time: 500, delay: 250 }
	});
}

//メインメニューのドロップダウン
$('.sf-menu')
	.superfish({ animation: { height: 'show', opacity: 'show' }, dropShadows: false });

$('.sf-menu ul').hover(
	function(){ $(this).siblings('a').addClass('hover') },
	function(){ $(this).siblings('a').removeClass('hover') }
);


//リストの偶奇
$('.listItem:odd').addClass('even');

//リストのサムネールのtableの幅調整
$('table.thumb .image').each(function(){
	if ( $(this).siblings('.caption').length ) {
		var thumbWidth = $(this).find('img').width();
		$(this).css('width', thumbWidth + 'px');
	}
	});
	
//ドロップダウンの最後のリストに .last を付加
$('ul.dropdown > li > ul > li:last').addClass("last");
	
	
});

//@mimoca.org をリンクテキストに変換

function mimocaMail(account) {

var send = account + '@mimoca.org';
document.write("<a href='mailto:" + send + "'>" + send + "<\/a>");

}

