// JavaScript Document
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var currentdate = 0
var core = 0

image = new StringArray(2)
image[0] = '<a href="/Mentirosa-Professional-Set_p_9.html"><img src="assets/images/HomeBanner1.jpg" border=0></a>'
image[1] = '<a href="/Mentirosa-Liars-Dice-Travel-Set_p_8.html"><img src="assets/images/HomeBanner2.jpg" border=0></a>'

var ran = 60/image.length

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
  }
}

function MyRandom(){
	var core=Math.floor(Math.random()*2)
    return(image[core])
}

function RandomPics(){
document.write(MyRandom());
}

function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}

function ShowContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "block";
}

function ReverseContentDisplay(d) {
if(d.length < 1) { return; }
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}

//-->