onload = function () {
  roleover();
}

function roleover() {
  var d = document;
  if(d.images){
    if(!d.MM_p) d.MM_p=new Array();
    var anchorFields = d.getElementsByTagName('A');
    for ( var i =0; i <anchorFields.length ; i++  ) {
      var anchor = anchorFields[i];
      if ( !anchor.firstChild ) continue;
      if ( !anchor.firstChild.src ) continue;
      if ( new String(anchor.firstChild.src).match(/_off/) ) {
        var src_on  = new String(anchor.firstChild.src).replace(/_off/,'_on') ;
        anchor.onmouseover = function () {this.firstChild.src = this.firstChild.src.replace(/_off/,'_on')};
        anchor.onmouseout  = function () {this.firstChild.src = this.firstChild.src.replace(/_on/,'_off')};
        d.MM_p[i] = new Image;
        d.MM_p[i].src = src_on;
      }
    }
  }
}

function onParLoginProc()
{
	$loginId = $('#par_loginId');
	$passwd = $('#par_passwd');
	
	if ($loginId.val().length == 0)
	{
		alert('ログインを入力して下さい');
		return;
	}
	
	$frm = $('#par_loginfrm');
	
	$frm.submit();
	
	
}

