
var what;
var x=0;
var photos;
var loaded = 0;
var strona = 0;

function runAjax(){

    new Ajax.Updater("content",what+".html",
      	{
                  method: 'get',
                  onComplete: function(){

                           $('content').appear();
                           myLytebox.updateLyteboxItems();
                  }

      	}
    );
}


function go(where) {
    what = where;

    $('prodMenu').style.display = "block";

    $('content').hide();

    if(where=="rings") { photos = 18; nr = 1; }
    else if(where=="necklaces") { photos = 21; nr = 1; }
    else if(where=="earrings") { photos = 11; nr = 1; }

    runAjax();

    x=1;


}

window.onload=function() {
       Effect.DropOut('load');
       setTimeout("$('mainLoad').style.display = 'block'", 600);
}
