$(document).ready(function(){						   
	$(document).pngFix();		
  $("#featured_image_1").hover(function () {
	var image = $("em").attr("title");									 									 
    $(this).addClass("eat_bg_2");
  }, function () {
    $(this).removeClass("eat_bg_2");
  }).click(function(){
  	top.location.href = 'page.php?type=eat';
  });
  
  $("#featured_image_2").hover(function () {								 
    $(this).addClass("drink_bg_2");
  }, function () {
    $(this).removeClass("drink_bg_2");
  }).click(function(){
  	top.location.href = 'page.php?type=drink';
  });
  
  $("#featured_image_3").hover(function () {								 
    $(this).addClass("listen_bg_2");
  }, function () {
    $(this).removeClass("listen_bg_2");
  }).click(function(){
  	top.location.href = 'page.php?type=listen';
  });
});
