function clear_formField (field) {
	if (field.value == 'Find It...') {
		field.value = '';
	} else if (field.value == 'Email Address...') {
		field.value = '';
	} else if (field.value == 'Enter Coupon Code...') {
		field.value = '';
	}
}

function reset_formField (field) {
	if (field.value == '' && field.name == "search") {
		field.value = 'Find It...';
	} else if (field.value == '' && field.name == "email") {
		field.value = 'Email Address...';
	} else if (field.value == '' && field.name == "coupon") {
		field.value = 'Enter Coupon Code...';
	}
}



/* 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)';
  }
}


