var today = new Date();
var dayWeek = today.getDay(); /* Grabs the day of the week from the today variable.  Outputs 0-6 corresponding to the Monday - Sunday */
			
var dotdFormatting = "<b><u>Deal of The Day:</u></b> ";

dayDeal = new Array;
dayDeal[0] = dotdFormatting+"Buy 2 accessories get the 3rd one <u>FREE</u> with any phone purchase (of equal or lesser value)."; /*SUNDAY*/
dayDeal[1] = dotdFormatting+"$10 off anything in the store $29.99 and above."; /*MONDAY*/
dayDeal[2] = dotdFormatting+"15% off accessories when you purchase 2 or more."; /*TUESDAY*/
dayDeal[3] = dotdFormatting+"Buy 1 Blackberry get the 2nd one <u>FREE</u> (Of equal or lesser value. Must sign a 2 year agreement on both phones)."; /*WEDNESDAY*/
dayDeal[4] = dotdFormatting+"15% off accessories when you purchase 2 or more."; /*THURSDAY*/
dayDeal[5] = dotdFormatting+"Free Samsung Gusto, LG Accolade, Samsung Haven, or LG Cosmos with any Droid purchase. (Must sign a 2 year agreement on both phones)."; /*FRIDAY*/
dayDeal[6] = dotdFormatting+"Buy 2 accessories get the 3rd one <u>FREE</u> with any phone purchase (of equal or lesser value)."; /*SATURDAY*/

var deal = dayDeal[dayWeek];

/* Created by Evan Reichard - March 2011 */
