var theImages = new Array()

theImages[0] = 'http://luciaandcompany.com/image_rotation/16.jpg'
theImages[1] = 'http://luciaandcompany.com/image_rotation/2.jpg'
theImages[2] = 'http://luciaandcompany.com/image_rotation/3.jpg'
theImages[3] = 'http://luciaandcompany.com/image_rotation/4.jpg'
theImages[4] = 'http://luciaandcompany.com/image_rotation/5.jpg'
theImages[5] = 'http://luciaandcompany.com/image_rotation/6.jpg'
theImages[6] = 'http://luciaandcompany.com/image_rotation/7.jpg'
theImages[7] = 'http://luciaandcompany.com/image_rotation/8.jpg'
theImages[8] = 'http://luciaandcompany.com/image_rotation/9.jpg'
theImages[9] = 'http://luciaandcompany.com/image_rotation/10.jpg'
theImages[10] = 'http://luciaandcompany.com/image_rotation/11.jpg'
theImages[11] = 'http://luciaandcompany.com/image_rotation/14.jpg'
theImages[12] = 'http://luciaandcompany.com/image_rotation/15.jpg'
theImages[13] = 'http://luciaandcompany.com/image_rotation/16.jpg'

var j = 0
var p = theImages.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
var whichImageTwo = Math.round(Math.random()*(p-1));

function showImage(){
	if(window.location.href == 'http://luciaandcompany.com/'){
		document.write('<img src="'+theImages[2]+'" />');
	}
	else if(window.location.href == 'http://www.luciaandcompany.com/'){
		document.write('<img src="'+theImages[2]+'" />');
	}
	else{
		document.write('<img src="'+theImages[whichImage]+'" />');
	}
}

function showImageOne(){
	if(whichImage == whichImageTwo){
		whichImageTwo = whichImage + 1;
	}
	if(window.location.href == 'http://luciaandcompany.com/'){
		document.write('<img src="'+theImages[2]+'" width="296" height="199" />');
	}
	else if(window.location.href == 'http://www.luciaandcompany.com/'){
		document.write('<img src="'+theImages[2]+'" width="296" height="199" />');
	}
	else if(window.location.href == 'http://www.luciaandcompany.com/wordpress/'){
		document.write('<img src="'+theImages[2]+'" width="296" height="199" />');
	}
	else if(window.location.href == 'http://luciaandcompany.com/wordpress/'){
		document.write('<img src="'+theImages[2]+'" width="296" height="199" />');
	}
	else{
		document.write('<img src="'+theImages[whichImage]+'" width="296" height="199" />');
	}
}

function showImageTwo(){
	if(window.location.href == 'http://luciaandcompany.com/'){
		document.write('<img src="'+theImages[4]+'" width="296" height="199" />');
	}
	else if(window.location.href == 'http://www.luciaandcompany.com/'){
		document.write('<img src="'+theImages[4]+'" width="296" height="199" />');
	}
	else if(window.location.href == 'http://luciaandcompany.com/wordpress/'){
		document.write('<img src="'+theImages[4]+'" width="296" height="199" />');
	}
	else if(window.location.href == 'http://www.luciaandcompany.com/wordpress/'){
		document.write('<img src="'+theImages[4]+'" width="296" height="199" />');
	}
	else{
		document.write('<img src="'+theImages[whichImageTwo]+'" width="296" height="199" />');
	}
}
