$(document).ready(function() {
			$("a.zoom1").fancybox({
				'overlayOpacity'	:	0.7,
				'overlayColor'		:	'#FFF',
				'frameWidth' : 440,
				'frameHeight' : 600
			});
		});
	

var popup="", num=0;

		function auf(x,y,bild)

		{

		popup=window.open("", num, "width="+(x+25)+",height="+(y+70)+"");

		popup.document.write("<html>");

		popup.document.write("<head><link rel='STYLESHEET' type='text/css' href='<?php echo$root?>template/style_iframe.css' \/>");

		popup.document.write("<title>redstone - Beste Baustoffe. Beste Preise<\/title><\/head>");

		popup.document.write("<body bgcolor='#FFFFFF'>");

		popup.document.write("<center><img src="+bild+" width="+x+" height="+y+" \/><p>");

		popup.document.write("<a href='javascript:window.close()'><font face='Arial' size='2'><b>Fenster schliessen<\/b><\/font><\/a><\/p><\/center>");

		popup.document.write("<\/body><\/html>");

		num++;

		}



		function show(id)

		{

		obj=document.getElementById(id);



		if (obj.style.display == "none") {

			obj.style.display = "";

		} else {

			obj.style.display = "none";

		}

		}