// Set Cookie Expiration in Days
num_days = 30;
// Set random number upper limit
rnd_upper_limit = 8;
// Set cookie name
thiscookie = "randomPhoto";
// Call function to read cookie
readCookie(thiscookie);

// Read Cookie and Display Appropriate Movie
function readCookie(cookieName){
    var start = document.cookie.indexOf(cookieName);
    if (start == -1){ 
		 // FIRST VISIT
        // Set cookie and expiration
        document.cookie = cookieName + "=yes; expires=" + ged(num_days);
		
		//Display Quote 1
			document.write('<img src="../wp-content/themes/artisandental/images/groupphotos_10.png" class"title">');      		
		
    } else {
		// RETURN VISIT
		// Generate random number
		var randomnumber = Math.floor(Math.random()*(rnd_upper_limit));

	
		switch(randomnumber+1)
			{
			case 1:
				//Display Quote 1
				document.write('<img src="../wp-content/themes/artisandental/images/groupphotos_10.png" class"title">');  
			  break;
			case 2:
				//Display Quote 2
				document.write('<img src="../wp-content/themes/artisandental/images/groupphotos_2.png" class"title">');     
			  break;
			case 3:
			  	//Display Quote 3
				document.write('<img src="../wp-content/themes/artisandental/images/groupphotos_3.png" class"title">');      
			  break;
			case 4:
				//Display Quote 4
				document.write('<img src="../wp-content/themes/artisandental/images/groupphotos_4.png" class"title">');       
			  break;
			 case 5:
				//Display Quote 5
				document.write('<img src="../wp-content/themes/artisandental/images/groupphotos_5.png" class"title">');       
			  break;
		    case 6:
				//Display Quote 6
				document.write('<img src="../wp-content/themes/artisandental/images/groupphotos_6.png" class"title">');       
			  break;
			  case 7:
				//Display Quote 7
				document.write('<img src="../wp-content/themes/artisandental/images/groupphotos_7.png" class"title">');       
			  break;
			 
			 case 8:
				//Display Quote 8
				document.write('<img src="../wp-content/themes/artisandental/images/groupphotos_8.png" class"title">');       	    break;
			 
			 case 9:
				//Display Quote 9
				document.write('<img src="../wp-content/themes/artisandental/images/groupphotos_9.png" class"title">');       default:
			  //code to be executed if randomnumber is out of scope of cases
			  alert("out of scope of random numbers");
			}
    }
}
 
// Set Date for Cookie Expiration - no editing necessary
function ged(noDays){
    var today = new Date();
    var expr = new Date(today.getTime() + noDays*24*60*60*1000);
    return  expr.toGMTString();
}
