$(document).ready(function(){
  $('.product-detail h1 a').each(function(){
  	var url = this.href;
	// jQuery nejak blbne .parent(), proto pouzijeme .parents().first()
    $(this).parents(".product-detail").first().addClass('clickable').bind('click', function(){
      location.href = url;
    });
  });
});
