$(document).ready(function() {
    $("a.face").hover(
      function () {
        $("div.replenish").show();
      }
    );
    $("div.logo-wrap, a.home, a.body, a.men, img").hover(
      function () {
        $("div.replenish").hide();
      }
    );

    $(".products a img").hover(
      function () {
        $("div.products-desc").html($(this).attr("alt"));      
    }, 
      function () {
        $("div.products-desc").html("");  
      }
    );

    $(".press-clips a img").hover(
      function () {
	var src = $(this).attr("src");
        $("div.press-img img").attr("src", src);   
    }
    );

    $("a.show-detail").click(
      function () {
	if ( $('div.detailed').is(':hidden') ) {
		$("div.detailed").show(); 
		$(this).html("Hide Detailed Product Information");
	} 
  	else {
		$("div.detailed").hide(); 
		$(this).html("Show Detailed Product Information  &raquo;");
	}
    }
    );
});


