<?php header('Content-type: text/html; charset=utf-8');
  /* STEP 1: LOAD RECORDS - Copy this PHP code block near the TOP of your page */
  require_once "C:/Users/Dani/Documents/xampp-win32-1.6.6a/xampp/htdocs/janizm/cmsAdmin/lib/viewer_functions.php";
  include_once "C:/Users/Dani/Documents/xampp-win32-1.6.6a/xampp/htdocs/dBug/dBug.php"; 
     
  	list($galleryRecords, $galleryMetaData) = getRecords(array( 
  	'tableName'	=> 'gallery', 
  	'where'		=> whereRecordNumberInUrl(1),
  	'limit'		=> '1', 
  	)); 
  	$selectedGalleryRecord = @$galleryRecords[0]; // get first record   
  	// show error message if no matching record is found
  		if (!$selectedGalleryRecord) {
    	print "Record not found!";
    	exit;
  	}

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="<?php echo $selectedGalleryRecord['metakeywords'] ?>" />
<meta name="description" content="<?php echo $selectedGalleryRecord['metadescription'] ?>" />
<link href="css/janizm.css" rel="stylesheet" type="text/css" />
<title><?php echo $selectedGalleryRecord['name'] ?></title>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<body>
	<div class="container">
       	<?php include("navigation/navigation.php"); ?>
		<?php //new dBug (count($selectedGalleryRecord['gallery_images'])); ?>
		<div class="mainText">
		<?php if (count($selectedGalleryRecord['gallery_images']) == 0):  ?>
			<?php echo $selectedGalleryRecord['content'] ?>
		<?php else: ?>
			<?php echo $selectedGalleryRecord['content'] ?>	
			<div class="flashContent">
				<script language="JavaScript" type="text/javascript">
					AC_FL_RunContent(
						'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
						'width', '630',
						'height', '420',
						'src', 'slideshowpro',
						'quality', 'high',
						'pluginspage', 'http://www.adobe.com/go/getflashplayer',
						'align', 'middle',
						'play', 'true',
						'loop', 'true',
						'scale', 'showall',
						'wmode', 'window',
						'devicefont', 'false',
						'id', 'slideshowpro',
						'bgcolor', '#ffffff',
						'name', 'slideshowpro',
						'menu', 'true',
						'allowFullScreen', 'false',
						'allowScriptAccess','sameDomain',
						'movie', 'slideshowpro',
						'salign', '',
						'FlashVars','xmlfile=http://localhost/janizm/images.xml.php?recordNum=<?php echo $selectedGalleryRecord ['num']?>'
						); 
				</script>
				<!--[if !IE]>-->
				<object type="application/x-shockwave-flash" data="../slideshowpro.swf" width="630" height="420">
						<!--<![endif]-->
						<param name="quality" value="high" />
						<param name="wmode" value="opaque" />
						<param name="swfversion" value="9.0.45.0" />
						<param name="expressinstall" value="Scripts/expressInstall.swf" />
						<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
						<div>
								<h4>Content on this page requires Adobe Flash Player.</h4>
								<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
						</div>
						<!--[if !IE]>-->
				</object>
				<!--<![endif]-->
			</div>			
		<?php endif ?>	
        </div>
        <br class="clearBoth" />
		</div>
</body>
</html>
