function classMenuGorne()
{
  this.active = function(id, lastId)
  {
    if( id >= lastId)
    {
      document.getElementById('menuGorneM'+id).style.background = "url(data/images/pageGenerator/menuGorne/last_a.png)";
      document.getElementById('menuGorneSub'+id).style.display = "block";
    }else{
      document.getElementById('menuGorneL'+id).style.background = "url(data/images/pageGenerator/menuGorne/left_a.png)";
      document.getElementById('menuGorneM'+id).style.background = "url(data/images/pageGenerator/menuGorne/middle_a.png)";
      document.getElementById('menuGorneR'+id).style.background = "url(data/images/pageGenerator/menuGorne/right_a.png)";
      document.getElementById('menuGorneSub'+id).style.display = "block";
    }
  }
  
  this.unactive = function(id, lastId)
  {
    if( id >= lastId)
    {
      document.getElementById('menuGorneM'+id).style.background = "url(data/images/pageGenerator/menuGorne/last.png)";
      document.getElementById('menuGorneSub'+id).style.display = "none";
    }else{
      document.getElementById('menuGorneL'+id).style.background = "url(data/images/pageGenerator/menuGorne/left.png)";
      document.getElementById('menuGorneM'+id).style.background = "url(data/images/pageGenerator/menuGorne/middle.png)";
      document.getElementById('menuGorneR'+id).style.background = "url(data/images/pageGenerator/menuGorne/right.png)";
      document.getElementById('menuGorneSub'+id).style.display = "none";
    }
  }
  
  this.setOption = function(id, lastId)
  {
    var i = 0;
    
    for(i;i<=lastId;i++)
    {
      this.unactive(i, lastId );
    }
    
    this.active(id, lastId);
    $.cookie('menuGorneTravelsalon', id);
  }
}

var menuGorne = new classMenuGorne;
