function nav_RollOver(element)
{
 if (element.style.color == "rgb(53, 50, 50)" || element.style.color == "#353232")
 {
  element.style.color = "#c1552f";
 }
}

function nav_RollOut(element)
{
 if (element.style.color == "rgb(193, 85, 47)" || element.style.color == "#c1552f")
 {
  element.style.color = "#353232";
 }
}

function search_textFocus(element)
{
 if (element.value == "Search")
 {
  element.value = "";
 }
}

function search_textLostFocus(element)
{
 if (element.value == "")
 {
  element.value = "Search";
 }
}