$().ready(function() {

     $(".catalog-product-image").click(function (){
            redirect ($(this).parent().children(".catalog-product-name").children("a").attr("href"));
     });

     $(".catalog-product-buynow").click(function (){
            redirect ($(this).parent().children(".catalog-product-name").children("a").attr("href"));
     });

     $(".catalog-product-desc").click(function (){
            redirect ($(this).parent().children(".catalog-product-name").children("a").attr("href"));
     });
     
     $(".catalog-product-price").click(function (){
            redirect ($(this).parent().children(".catalog-product-name").children("a").attr("href"));
     });
     
     $("span[class$='_text']").click(function (){
         redirect ($('#'+$(this).attr('class').replace('_text','_link')).attr("href"));
     });

     $("#geo-favorite").click(function (){
         redirect ($(this).children(".catalog-product-buynow").children("a").attr("href"));
     });

 });



function redirect (url){
   $(location).attr('href', url);
}

