Index: /views/produkttemplates/standard.phtml
===================================================================
--- /views/produkttemplates/standard.phtml	(revision 6732)
+++ /views/produkttemplates/standard.phtml	(revision 6734)
@@ -35,6 +35,11 @@
 		<?php /* Block fÃŒr die Produktbilder START */ ?>
 		<?php 
-		$arAttachmentID = $this->imagehandler->getAttachmentID($this->view['data']['product_key']);
-		$arAttachmentIDsAll = $this->imagehandler->getAttachmentIDs($this->view['data']['product_id']);
+		
+			/* Das ist das primÃ€re Anzeigebild des Produktes (AttachmentID) */
+			$arAttachmentID = $this->imagehandler->getAttachmentID($this->view['data']['product_key']);
+		
+			/* Array mit allen AttachmentIDs der Produktbilder */
+			$arAttachmentIDsAll = $this->imagehandler->getAttachmentIDs($this->view['data']['product_id']);
+		
 		?>
 
@@ -45,9 +50,14 @@
 
 				<?php if (sizeof($arAttachmentIDsAll) > 0) { for ($i = 0; $i < sizeof($arAttachmentIDsAll); $i ++) { ?>
-					<?php $att = wp_get_attachment_image($arAttachmentIDsAll[$i], array(300, 300), false); ?>
-					<?php $att = wp_get_attachment_image_src($arAttachmentIDsAll[$i], array(300, 300), false); ?>
-					<a  <?php if ($arAttachmentIDsAll[$i] != $arAttachmentID) echo 'style="display:none;"'; ?> rel="gallery-wpsg-<?php echo $this->getTemplateIndex(); ?>" title="<?php echo $this->getProductName($this->view['data']['id']); ?>" href="<?php echo $att[0]; ?>" class="thickbox">
+					
+					<?php /* URL fÃŒr die Lightbox */ ?>
+					<?php $att = wp_get_attachment_image_src($arAttachmentIDsAll[$i], array(800, 600), false); ?>
+					
+					<a <?php if ($arAttachmentIDsAll[$i] != $arAttachmentID) echo 'style="display:none;"'; ?> rel="gallery-wpsg-<?php echo $this->getTemplateIndex(); ?>" title="<?php echo $this->getProductName($this->view['data']['id']); ?>" href="<?php echo $att[0]; ?>" class="thickbox">
+
 						<?php echo wp_get_attachment_image($arAttachmentIDsAll[$i], array(300, 300), false, array()); ?>
+						
 					</a>
+					
 				<?php } } ?>
 
