function  img_show(event){
   //alert("Thanks for visiting!");
   //event.preventDefault();
   $(".product_info").hide('fast'); //zavreni pripadnych otevrenych oken
   $(".nahled").hide('fast');       //zavreni pripadnych otevrenych oken

   var filename = $(this).attr("src");

   filename = filename.replace(/products_img/gi,"products_img_big");

   $(this).parent().find(".nahled").find(".photo_big").css('background-image', 'url('+filename+')');
   $(this).parent().find(".nahled").show("slow"); //otevreni velke fotky

 }

function info_show(event)
{
    // $(this).hide("fast");
    event.preventDefault();
    $(this).parent().parent().parent().find(".product_info").show("slow"); //otevreni informace o produktu
}

function photo_hide(event)
{
    event.preventDefault();
    $(this).parent().parent().parent().find(".product_info").hide("fast");
    $(this).parent().parent().parent().hide("fast");
}

function product_hide(event)
{
    $(this).parent().hide("fast");
}



function init()
{
    //alert('cau');
    try{
    document.execCommand("BackgroundImageCache", false, true);
    }
    catch(err){}


     //$("img").pngfix();

    $("a.info_close").pngfix();
    $("a.info_open").pngfix();
    //$(document).pngFix('/public/img/close_02.png');
    $("img").click(img_show);
    $(".info_open").click(info_show);
    $(".info_close").click(photo_hide);
    $(".product_info").click(product_hide);
}


//sposteni po nacteni stranky
$(document).ready(init);

