//	Generate text for one picture
function one_picture( album, imageName, descr )
{
    var rootPath = "/";

    var itemTxt = "";
    itemTxt += "<a class=\"imagegroup\" title=\"" + descr + "\"";
    itemTxt += " href=\"" + rootPath + "images/" + album + "/" + imageName + ".jpg\">";
    itemTxt += "<img src=\"" + rootPath + "images/" + album + "/" + imageName + "_tn.jpg\"";
    itemTxt += " alt=\"" + descr + "\" border=\"0\"/>";
    itemTxt += "</a>";

    document.write( itemTxt );
}

//	Generate html for one video using Colorbox
function one_video( url, videoName )
{
    var itemTxt = "";
    itemTxt += "<a class=\"colorboxvideo\" title=\"" + videoName + "\" href=\"" + url + "\"></a>";
    itemTxt += "<div id=\"tutDescription\" style=\"text-align:left\">" + videoName + "</div>";

    document.write( itemTxt );
}

