jQuery.noConflict();
  
jQuery(document).ready(function() {
	// Enable full-grid clicking to go to product page.
  jQuery("article.item").click(function(){
    href = jQuery(this).find("a").attr("href");
    window.location = href; 
  });

	// Enable thumbnail hovering in product view.
  jQuery("div#thumbnails a").hover(function(){
		jQuery("img#image").attr('src', jQuery(this).attr('href'));
	});
});