function ShowImg(imgid)
{
    $('#'+imgid).show();
}
function HideImg(imgid)
{
    $('#'+imgid).hide();
}
$(function() {
    $( "#tabs" ).tabs();
});

