<?php

include "template.inc";

  require_once ("Design.php");
  
  Entete (_("Gajim, a Jabber client"), "GAJIM");

$tpl = new Template("templates");
$tpl->set_file("page", "screenshots.tpl");
$tpl->set_var("INTRO", _("Here are some screenshots of Gajim:"));

#thumb => big_image
$array_images = array(
	"gajim_roster_thumb.png" => "gajim_roster.png",
	"gajim_tabbed_chat_thumb.png" => "gajim_tabbed_chat.png",
	"groupchat_window_thumb.png" => "groupchat_window.png",
	"history_window_thumb.png" => "history_window.png",
	);

$tpl->set_block("page", "IMAGE", "image");
while(list($thumb, $image) = each($array_images)){
 $tpl->set_var(array(
 	"BIG_IMG" => $image,
	"THUMB" => $thumb));
 $tpl->parse("image", "IMAGE", true);
}

$tpl->parse("MyOutput", "page", true);
$tpl->p("MyOutput");

  PiedDePage();

?>
