$(document).ready(function() {

	$("#mainSearch").validate();
	$("#HerbSearch").validate();
	$("#FormulaSearch").validate();

	$("#newsletterForm").validate({
		rules: {
			mail_list_email: {
				required: true,
				email: true
				}
		},
		messages: {
			mail_list_email: {
				required: "Please enter a valid email address..."
				}
		}
	});

	$('#criteria').example('Enter your search here...', {className: 'formHelp'});

	$('#feedback_textarea').example('Click here to leave us feedback! You can leave us feedback on this specific page, without looking for our email address or linking to the page. Please include your email address if you would like a reply. Please do not use HTML or JavaScript in this box.', {className: 'formHelp'});

	$('#feedbackArea').hide();
	$('#toggleFeedback').click(function () {
		$("#feedbackArea").toggle("slow");
		return false;
		});    

	$("#printLink").click(function() {
		print_page();
		})

});

/* Enable Form Focus in Internet Explorer */

sfFocus = function() {
	var sfEls = document.getElementsByTagName("INPUT");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onfocus=function() {
			this.className+=" sffocus";
		}
		sfEls[i].onblur=function() {
			this.className=this.className.replace(new RegExp(" sffocus\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfFocus);