
/*
** RollOver
*/

$(document).ready(function(){
$("img.opa_over").fadeTo(10,0.999999);
$("img.opa_over").hover(function(){
        $(this).fadeTo(10,0.7);
    },
    function(){
        $(this).fadeTo(10,0.999999);
    });
});

$(document).ready(function(){
$("input.opa_over").fadeTo(10,0.999999);
$("input.opa_over").hover(function(){
        $(this).fadeTo(10,0.7);
    },
    function(){
        $(this).fadeTo(10,0.999999);
    });
});

function pop(obj) {
wobj = window.open("", "pop","scrollbars=yes,width=720,height=270");
obj.target = "pop";
wobj.focus();
return true;
}

function submit(){
	org = document.charset;
	document.charset='EUC-JP';
	document.form1.submit();
	document.charset=org;	
}
