var colore
$(document).ready(function(){
//MENU
$("div.menu").children("div.voci").hide();
$("div.menu p").click (function() {
			if ( $(this).parent("div").parent("div.menu").children("div.voci").length>0 )
				{
					//azzeriamo il menu
					$("div.menu").children("div.voci").slideUp("fast");
					$("div.menu p").css("color","#595A5C")
					$("img.topcol").parent("div").css("background","#ccc");
					$("img.topcol").attr("src","img/menu_col_both.gif");
					//attiviamo la voce
					$(this).parent("div").parent("div.menu").children("div.voci").slideDown("normal");
					colore = $(this).parent("div").parent("div.menu").children("div.voci").css("border-left-color");
					$(this).css("color",colore)
					$(this).parent("div").children("div:first").css("background",colore);
					$(this).parent("div").children("div:first").children("img.topcol").attr("src","img/menu_col_top.gif");
				}
			else
				{
				if ($(this).text()=='Homepage')
					{
					window.location='default.asp';
					}
				if ($(this).text()=='News e convegni')
					{
					window.location='notizie.asp';
					}
			//	if ($(this).text()=='Contatto')
			//		{
			//		window.location='contatto.asp';
			//		}	
				}
		});
//BANNERS
$("div.banner").append("<div style='position:absolute; bottom:4px; right:6px'>Clicca qui</div>")	;

});

function Login()
{
	if ( $("#login_box").css("height")=='0px' )
	{
      $("#login_box").animate({ 
        height: "26px"
      }, 500 );
	}
	else
	{
      $("#login_box").animate({ 
        height: "0px"
      }, 500 );
	}
}

function LoginReset()
{
if($("#LoginForm").length>0)	
	{
	$("#LoginForm").html('<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-top:2px"><tr><td><input type="text" name="username" style="width:90px; border:solid 1px #666; background:url(img/user.gif) center right no-repeat" /></td><td><input type="password" name="password" style="width:90px; border:solid 1px #666; background:url(img/pass.gif) center right no-repeat" /></td><td><input type="submit" value=" " style="border:none; color:#fff; height:16px; font-size:10px; width:50px; background:url(img/bt_entra.gif) center center no-repeat" /></td></tr></table>');
	}
}


function wopen(url, name, w, h)
{
  w += 32;
  h += 96;
  wleft = (screen.width - w) / 2;
  wtop = (screen.height - h) / 2;
  if (wleft < 0) {
    w = screen.width;
    wleft = 0;
  }
  if (wtop < 0) {
    h = screen.height;
    wtop = 0;
  }
  
  var win
  
    if(!win || win.closed)
    {
    win=window.open(url, null, 'width=' + w + ', height=' + h + ', left=' + wleft + ', top=' + wtop + ', location=no, menubar=no, status=no, toolbar=no, scrollbars=no, resizable=no');

        if(win)
        {
                    win.resizeTo(w, h);
                    win.moveTo(wleft, wtop);
            win.focus();   
        }
        else
        {
            location.href=url;
        }
    }
    else
    {
        win.location.href=url;
             win.resizeTo(w, h);
             win.moveTo(wleft, wtop);
        win.focus();   
    }  
}


function ShowArearis()
//click su link 'area riservata' in testata apre il menu corrispondente
{
	if ( $("div#menu_arearis ").children("div.voci:visible").length==0 )
		  $("div#menu_arearis p").click();
}