// JavaScript Document

function randomImgLeft(level) {
	var thePics = new Array()

	thePics[1] = "photo-01.gif"
	thePics[2] = "photo-02.gif"
	thePics[3] = "photo-03.jpg"
	thePics[4] = "photo-04.jpg"
	thePics[5] = "photo-05.jpg"
	thePics[6] = "photo-06.jpg"
	thePics[7] = "photo-07.jpg"
	thePics[8] = "photo-08.jpg"
	thePics[9] = "photo-09.jpg"
	thePics[10] = "photo-10.jpg"
	thePics[11] = "photo-11.jpg"
	thePics[12] = "photo-12.jpg"
	thePics[13] = "photo-13.jpg"
	
	
	var rn = Math.floor(Math.random() * thePics.length)
	if (rn == 0) {
	  rn = 1
	}
	
	
	if(level==2){
		document.write("<img src='http://www.casadaestrela.com/images/banner/" +thePics[rn]+ "' width='200' height='130' border='0' alt='photo' title='photo' class='banner' style='margin-right:60px;' />")
	}
	else{
		document.write("<img src='http://www.casadaestrela.com/images/banner/" +thePics[rn]+ "' width='200' height='130' border='0' alt='photo' title='photo' class='banner' style='margin-right:60px;'   />")}

}


function randomImgRight(level) {
	var thePics = new Array()

	thePics[1] = "photo-14.jpg"
	thePics[2] = "photo-15.jpg"
	thePics[3] = "photo-16.jpg"
	thePics[4] = "photo-17.jpg"
	thePics[5] = "photo-18.jpg"
	thePics[6] = "photo-19.jpg"
	thePics[7] = "photo-20.jpg"
	thePics[8] = "photo-21.jpg"
	thePics[9] = "photo-22.jpg"
	thePics[10] = "photo-23.jpg"
	thePics[11] = "photo-24.jpg"
	thePics[12] = "photo-25.jpg"
	
	
	var rn = Math.floor(Math.random() * thePics.length)
	if (rn == 0) {
	  rn = 1
	}
	
	
	if(level==2){
		document.write("<img src='http://www.casadaestrela.com/images/banner/" +thePics[rn]+ "' width='200' height='130' border='0' alt='photo' title='photo' class='banner' style='margin-left:60px;' />")
	}
	else{
		document.write("<img src='http://www.casadaestrela.com/images/banner/" +thePics[rn]+ "' width='200' height='130' border='0' alt='photo' title='photo' class='banner' style='margin-left:60px;'   />")}

}

