// JavaScript Document
jQuery(document).ready(function(){

/* jQUERY goes here  */

	// home page images rotator
	
	if (jQuery('#home_rotator').length > 0) {
		jQuery('#home_rotator').innerfade({ animationtype: 'fade', speed: 3000, timeout: 8000, type: 'sequence', containerheight: 'auto' });
	}
	

});


// input field text reset functions
function resetField(field){
	if (field.value=="Search..." || field.value=="Search products..." || field.value=="Sign up now" || field.value=="DD" || field.value=="MM" || field.value=="YYYY"){
		field.value="";
		return false;
	}
}

function startValue(field, text){
			if (field.value==""){
			field.value=text;
			return false;
			}
}


