urlVar = true;



 $(document).ready(function() {
	 $(".h2BuchImg").hover(function()
				{
		 	$(this).css("cursor","pointer");
		},
		function()
		{
		 	$(this).css("cursor","auto");
 		});
	 $("#h2Buch > img").click(function() {
			// alert("hallo");
			 openBuch();
	 		});
	 Shadowbox.init({
		    // let's skip the automatic setup because we don't have any
		    // properly configured link elements on the page
		 initialHeight: "660",
		 initialWidth: "880",
		 overlayColor: "#000000",
		 overlayOpacity: "0.5",
		 flashParams: {wmode:"transparent"},
		 handleOversize: false,
		    // include the html player because we want to display some html content
		    players: ["iframe", "img", "swf"],
			 viewportPadding: 10

		});
	 	
 });