//hover
$(document).ready(function() {
$(".rollover").hover(function() {
$(this).attr("src", function() {
return this.src.substring(0, this.src.lastIndexOf(".")) + "_on" + this.src.substring(this.src.lastIndexOf("."));
});
}, function() {
$(this).attr("src", function() {
return this.src.substring(0, this.src.search(/_on\./)) + this.src.substring(this.src.lastIndexOf("."));
});
});
//shimashima
$('body#home div#content div#main table').each(function(){$(this).find('tr:even').addClass('trbg');});
});

//popup
$(function() {
$(".popupWindow").click(function(){
window.open(this, "popupWindow","width=600,height=430,status=yes,toolbar=no,resizable=yes,scrollbars=yes");
return false;
});
$(".popupPrintWindow").click(function(){
window.open(this, "popupPrintWindow","width=640,height=520,status=yes,toolbar=no,resizable=yes,scrollbars=yes");
return false;
});
});


