function meniu_over(id)
{
  if(id!='')
  {
    //alert(id);
    document.getElementById('id_m_s'+id).style.background="url(http://www.universulalimentar.ro/img/buton-over.jpg) no-repeat left top";
	document.getElementById('id_m_s_s'+id).style.background="url(http://www.universulalimentar.ro/img/buton-over.jpg) no-repeat right top";
	return true;
  }
}

function meniu_out(id)
{
  if(id!='')
  {
    //alert(id);
    document.getElementById('id_m_s'+id).style.background="url(http://www.universulalimentar.ro/img/buton_normal.jpg) no-repeat left top";
	document.getElementById('id_m_s_s'+id).style.background="url(http://www.universulalimentar.ro/img/buton_normal.jpg) no-repeat right top";
	return true;
  }
}

function meniu_onclick(id)
{
  if(id!='')
  {
    //alert(id);
    //document.getElementById('id_m_s'+id).innerHTML = 
	document.getElementById('id_m_s'+id).style.background="url(http://www.universulalimentar.ro/img/buton-over.jpg) no-repeat left top";
	//document.getElementById('id_m_s_s'+id).innerHTML = 
	document.getElementById('id_m_s_s'+id).style.background="url(http://www.universulalimentar.ro/img/buton-over.jpg) no-repeat right top";
	document.getElementById('id_m_s_s'+id).style.color = "#fff";
	
	return true;
  }
}

function newpage(url) {
	newwindow=window.open(url,'name','height=400,width=400, scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}

function favorites(LURL, LTITLU)
{
	    var BookmarkURL=LURL;
        var BookmarkTitle=LTITLU;
         // If the browser is Internet Explorer
         if (document.all)
         {
              // Add to Favorites (Internet Explorer)
                 window.external.AddFavorite(BookmarkURL,BookmarkTitle);
        }
       else
      {
               // Add to Bookmarks (Mozilla Firefox)
               window.sidebar.addPanel(BookmarkTitle, BookmarkURL, '');
      }
  //alert('merge');
  return true;
}