 

$(document).ready(function () {
	

 $(".slider ul li img").live("click", function() {
 
//alert($('.slider').html());



    s = $(this).attr("src"); 
    
    var matches = s.match(/tbmin_([\d]+)/);

    $.get("pic_info", { pid: matches[1] },
     function(data){
        $('#descr').html(data);
    //alert("Data Loaded: " + data);
     });

    s = s.replace(/tbmin/,"big");
    $(".mid_pic img").attr("src", s);
 });
 
});
 
