function clear_formField (field) {
	if (field.value == "Product Search...") {
		field.value = "";
	}
}

function reset_formField (field) {
	if (field.value == "" && field.name == "search") {
		field.value = "Product Search...";
	}
}



/* feature image rotation properties

-webkit-transform: rotate(-90deg); 
-moz-transform: rotate(-90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

*/


function setBackground() {
  if (document.body) {
    document.body.style.backgroundImage = 'url(./siteimages/bg_body1.jpg)';
  }
}


