var images = new Array();
var stock_01=[];
var stock_02=[];
var j;
var nof_items = 5;

images[0] = '<img onmouseover=\"this.src=\'./img/m01a.jpg\';\" onmouseout=\"this.src=\'./img/m01b.jpg\';\" onclick=\"document.location.href=\'tipikus_esetek_a_fogfeheritesben.html\';\" src=\"./img/m01b.jpg\" width=\"138\" height=\"103\" alt=\"\" title=\"\" border=\"0\" /><br /><br />'
images[1] = '<img onmouseover=\"this.src=\'./img/m02a.jpg\';\" onmouseout=\"this.src=\'./img/m02b.jpg\';\" onclick=\"document.location.href=\'tipikus_esetek_a_fogfeheritesben.html\';\" src=\"./img/m02b.jpg\" width=\"138\" height=\"103\" alt=\"\" title=\"\" border=\"0\" /><br /><br />'
images[2] = '<img onmouseover=\"this.src=\'./img/m03a.jpg\';\" onmouseout=\"this.src=\'./img/m03b.jpg\';\" onclick=\"document.location.href=\'tipikus_esetek_a_fogfeheritesben.html\';\" src=\"./img/m03b.jpg\" width=\"138\" height=\"103\" alt=\"\" title=\"\" border=\"0\" /><br /><br />'
images[3] = '<img onmouseover=\"this.src=\'./img/m04a.jpg\';\" onmouseout=\"this.src=\'./img/m04b.jpg\';\" onclick=\"document.location.href=\'tipikus_esetek_a_fogfeheritesben.html\';\" src=\"./img/m04b.jpg\" width=\"138\" height=\"103\" alt=\"\" title=\"\" border=\"0\" /><br /><br />'
images[4] = '<img onmouseover=\"this.src=\'./img/m05a.jpg\';\" onmouseout=\"this.src=\'./img/m05b.jpg\';\" onclick=\"document.location.href=\'tipikus_esetek_a_fogfeheritesben.html\';\" src=\"./img/m05b.jpg\" width=\"138\" height=\"103\" alt=\"\" title=\"\" border=\"0\" /><br /><br />'
images[5] = '<img onmouseover=\"this.src=\'./img/m06a.jpg\';\" onmouseout=\"this.src=\'./img/m06b.jpg\';\" onclick=\"document.location.href=\'tipikus_esetek_a_fogfeheritesben.html\';\" src=\"./img/m06b.jpg\" width=\"138\" height=\"103\" alt=\"\" title=\"\" border=\"0\" /><br /><br />'
images[6] = '<img onmouseover=\"this.src=\'./img/m07a.jpg\';\" onmouseout=\"this.src=\'./img/m07b.jpg\';\" onclick=\"document.location.href=\'tipikus_esetek_a_fogfeheritesben.html\';\" src=\"./img/m07b.jpg\" width=\"138\" height=\"103\" alt=\"\" title=\"\" border=\"0\" /><br /><br />'
images[7] = '<img onmouseover=\"this.src=\'./img/m08a.jpg\';\" onmouseout=\"this.src=\'./img/m08b.jpg\';\" onclick=\"document.location.href=\'tipikus_esetek_a_fogfeheritesben.html\';\" src=\"./img/m08b.jpg\" width=\"138\" height=\"103\" alt=\"\" title=\"\" border=\"0\" /><br /><br />'
images[8] = '<img onmouseover=\"this.src=\'./img/m09a.jpg\';\" onmouseout=\"this.src=\'./img/m09b.jpg\';\" onclick=\"document.location.href=\'tipikus_esetek_a_fogfeheritesben.html\';\" src=\"./img/m09b.jpg\" width=\"138\" height=\"103\" alt=\"\" title=\"\" border=\"0\" /><br /><br />'
images[9] = '<img onmouseover=\"this.src=\'./img/m10a.jpg\';\" onmouseout=\"this.src=\'./img/m10b.jpg\';\" onclick=\"document.location.href=\'tipikus_esetek_a_fogfeheritesben.html\';\" src=\"./img/m10b.jpg\" width=\"138\" height=\"103\" alt=\"\" title=\"\" border=\"0\" /><br /><br />'
images[10] = '<img onmouseover=\"this.src=\'./img/m11a.jpg\';\" onmouseout=\"this.src=\'./img/m11b.jpg\';\" onclick=\"document.location.href=\'tipikus_esetek_a_fogfeheritesben.html\';\" src=\"./img/m11b.jpg\" width=\"138\" height=\"103\" alt=\"\" title=\"\" border=\"0\" /><br /><br />'
images[11] = '<img onmouseover=\"this.src=\'./img/m12a.jpg\';\" onmouseout=\"this.src=\'./img/m12b.jpg\';\" onclick=\"document.location.href=\'tipikus_esetek_a_fogfeheritesben.html\';\" src=\"./img/m12b.jpg\" width=\"138\" height=\"103\" alt=\"\" title=\"\" border=\"0\" /><br /><br />'


//var img = Math.floor(Math.random()*(images.length));

if (nof_items>images.length) { nof_items = images.length };

while (nof_items>0) {
	j = Math.floor(images.length * (Math.random() % 1));  // +1 no!
	if (!stock_01[j]) stock_02[--nof_items] = stock_01[j] = j
}

for (i=0; i<stock_02.length; i++) {
        document.write(images[stock_02[i]]);
}
