jQuery(document).ready(function($){
// 外部リンクを自動的に別ウィンドウで表示
$("a[href^='http:']").not("[href*='2011.sodsurvey.jp']").attr('target','_blank');
$("a[href^='https:']").not("[href*='2011.sodsurvey.jp']").attr('target','_blank');
// ページトップへのリンク
$('a.pagetop').click(function(){ $('html, body').animate({scrollTop:0}, 'slow'); return false; });
// アコーディオン
$('#accordion').accordion({ autoHeight: false });
//
$.alternation( {
selector:'#contributions ul',
classname:'last',
each:3,
callback:function(element){}
});
});

