﻿function GetRandom(maxNum) {
 var ranNum = Math.floor(Math.random() * maxNum);
 return ranNum;
}


 function ShowSpecial() {
	 var special = new Array(2);
	 var whichSpecial = 0;
	 var d = new Date();
 
	 switch(d.getDay())
	 {
		case 0:
			return "CTA-Right-FishFry";
			break;
		case 1: 
			special[0] = "CTA-Right-TwoAppetizers";
			special[1] = "CTA-Right-FivePasta";
			whichSpecial = GetRandom(special.length);
			return special[whichSpecial];
			break;
		case 2: 
			special[0] = "CTA-Right-TwoAppetizers";
			special[1] = "CTA-Right-FivePasta";
			whichSpecial = GetRandom(special.length);
			return special[whichSpecial];
			break;
		case 3:
			return "CTA-Right-FiveMartinis";
			break;
		case 4:
			return "CTA-Right-BYOV";
			break;
		case 5:
			return "CTA-Right-PennyWine";
			break;
		case 6:
		    return "CTA-Right-FishFry";
			break;
	 }
 
 return null;
} 
