/* Date Function v1.0 */
function writeDate()
{
  var currentDate = new Date();
  var year = currentDate.getYear();
  if (year < 1000)
    year += 1900;
  var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
  var monthNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December");

  document.getElementById('date').innerHTML = monthNames[currentDate.getMonth()] + " " + currentDate.getDate() + ", " + year;
}

//Fading Text v1.0
var quotearray = new Array( 
                        "Said yes to the dress but no to the price? We offer the BEST Prices and Best Selection in the Bay Area.",
                        "5 STAR REVIEWS on Yelp, Project Wedding, Patch, Weddingbee and more! Where Every Bride is the Star!",
                        "Best Prices and Best Selection<br /> in the San Francisco Bay Area" ,     
						 "Come on in and feel the difference. <br />Conveniently located in Castro Valley" 
 		);
var i = Math.round((quotearray.length-1)*Math.random());
function rotateText()
{
  document.getElementById("fadingtext").innerHTML = quotearray[i];
  if ( i < quotearray.length-1) i++;
  else i=0;  
  
  fadeText( fade = "in", hex = 255, j = 0, hold = 0);

  setTimeout("rotateText()", 15100);
}

var fade, hex, j, hold;

function fadeText() 
{
  if( fade == "in" && hex > 0 )
  {
    hex-=5;
    document.getElementById("fadingtext").style.color="rgb("+hex+","+hex+","+hex+")";
    setTimeout("fadeText()", 50);
  }
  else
    hold = 1;

  
  if ( j > 10) hold = 0;

  if (hold == 1)
  {
    j++;
    setTimeout("fadeText()", 1000);
  }
  else if ( hold == 0 && j > 10)
  {
    fade = "out";
  }

  if ( fade == "out" && hex < 255)
  {
    hex+=5;
    document.getElementById("fadingtext").style.color="rgb("+hex+","+hex+","+hex+")";
    setTimeout("fadeText()", 50);
  }   
}

