window.addEvent('domready', function(){
	autoText();							 
});

function randomBackground( div, images, folder ){
	var imagesSplit = images.split(","); var imNumer = "";
	imNumber = $random(0, imagesSplit.length-1)
	background = 'url('+folder+imagesSplit[imNumber]+') no-repeat top center';
	$(div).setStyles({ background: background });
}


/* REECES AMAZING AUTO TEXT */
function autoText(){
	var rows = $$('.autotext');
	rows.each( function(element) {
		element.value = element.getAttribute('autotext')
		element.style.color = "#999999";
		element.addEvent('focus', function(){ 
			if ( element.value == "" || element.value == element.getAttribute('autotext') ){
				$(element).value = "";
				element.style.color = "#000000";
			}
		});
		element.addEvent('blur', function(){ 
			if ( element.value == "" || element.value == element.getAttribute('autotext') ){
				element.style.color = "#999999";
				element.value = element.getAttribute('autotext');
			}
		});
		
	});

}

// REMOVES AUTOTEXT FOR WHEN FORM IS SUBMITTED
function removeAutotext(formId){
	if ( !formId ) { id = "" } else { id = formId };
	var rows = $$('.autotext');
	rows.each( function(element) {
		if ( element.getAttribute('autotext') == element.getValue() ){
			element.value = "";
		}
	});
	return false;
}