$(document).ready(function(){
						   						   
	$("#HPP-wine").hover(
	  function () {
		$(this).toggleClass("HPP-wineHover");
		$(this).toggleClass("HPP-wineOff");
	  },
	  function () {
		$(this).toggleClass("HPP-wineHover");
		$(this).toggleClass("HPP-wineOff");
	  }
	);
	$("#HPP-food").hover(
	  function () {
		$(this).toggleClass("HPP-foodHover");
		$(this).toggleClass("HPP-foodOff");
	  },
	  function () {
		$(this).toggleClass("HPP-foodHover");
		$(this).toggleClass("HPP-foodOff");
	  }
	);
});
