// JavaScript Document
$(document).ready(function(){
			$(".home").hover(function() {
			$(this).attr("src","images/homebuttonhover.png");
			}, function() {
			$(this).attr("src","images/homebutton.png");
			});
			});
$(document).ready(function(){
			$(".menu").hover(function() {
			$(this).attr("src","images/menubuttonhover.png");
			}, function() {
			$(this).attr("src","images/menubutton.png");
			});
			});
$(document).ready(function(){
			$(".yogurt").hover(function() {
			$(this).attr("src","images/yogurtbuttonhover.png");
			}, function() {
			$(this).attr("src","images/yogurtbutton.png");
			});
			});

