// JavaScript Document
$(document).ready(function(){
	/*$("#product_list > ul > li > a > img").hover(
      function () {
        $(this).css("opacity",".9");
      },
      function () {
        $(this).css("opacity","1");
      }
    );*/
	$(".product_menu > ul > li > a").hover(
      function () {
        $(this).css("color","#35755A");
      },
      function () {
        $(this).css("color","#4E4B49");
      }
    );
});