// JavaScript Document

$(function(){
	$("#login").click(function(){
		$("form",this).slideToggle("slow");
	});
//	$("#login").click(function(){
//		$("form",this).slideUp("slow");
//	});
	$("a.win").click(function(){
		return popUpWindow($(this).attr("href"),100,100,450,550);
	});

	$(".grid tr:gt(0)").mouseover(function(){
		$(this).css("background-color","#EEE");
	}).mouseout(function(){
		$(this).css("background-color","#FFF");
	});

});	

var popUpWin=0;

function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  return false;
}
