﻿
$(document).ready(function() {
    //contact forms
    $("input.autoclear").focus(
     function() {
         // only select if the text has not changed
         if (this.value == this.defaultValue) {
             this.select();
         }
     })

    $("input.autoclear").blur(
     function() {
         // only select if the text has not changed
         if (this.value == "") {
             this.value = this.defaultValue
         }

     })
	 
	 
	$("a.ingredients").css('cursor', 'pointer');
    $("a.ingredients").click(
     function() {
         $("a.ingredients").hide();
         $("p#ingredientslist").show();
     })

});
