jQuery(document).ready(function($){

	$(".product-image").hover(
	  function () {
	    $(this).find('.content').fadeIn();
	  }, 
	  function () {
		$(this).find('.content').fadeOut();
	  }
	);
	$('.product-image .content').click( function () { window.location = $(this).find('a').attr('href') });


	  /* Round corners IE only */
	  DD_roundies.addRule('#header .links li a', '10px');
	  DD_roundies.addRule('#nav a', '10px');
});
