function pxGallery(){
	$(".thumbs").each(function(index){
        jQuery(this).click(function(){
            
                var selectionId=jQuery(this).attr("TargetPicSliceId");
                //alert(selectionId);
        	$("."+selectionId).attr("src", jQuery(this).attr("picname"));
        });
    });
}


$(document).ready(pxGallery);

