	$(window).bind("load", function() {
		//initialize the slidegallery
		//$('#zomm').hide(); //hides the zoombutton as long as the lightbox is not ready
		
		//$("div#gallery").slideView();	//activates the thumb-gallery for animated gallery		
	});	
	
	
	function openPrintVersion( url ) {
 		fenster = window.open(url, "fenster1", "width=614,height=626,status=yes,scrollbars=no,menubar=no,location=no,resizable=yes");
		fenster.focus();
		return false;
	}
		
	
	$(document).ready(function()
	{	
	
		var printUrl = $('#printbutton').attr('href');
		$('#printbutton').attr('href', "#");
	
		$('#largeimg').slideViewLarge();
		
		$('#printbutton').click( function(){
			openPrintVersion( printUrl );
		});		
		
		// initialisation of the content which sould be scrollable
			
		//hadle close event of the lightbox
		$('#zoom').click(function () {						
			$('#lightbox').css({left: '225px'});
			$('#lightbox').hide();						
			$('#lightbox').fadeIn('slow');
		});
		
		$('#close').click(function(){
			$('#lightbox').fadeOut('slow');
			globalTime=0;
		});
		
		$('input#submit').hover(
			function(){
				$(this).attr("src", "img/bg_print_button_hi.gif");
			},
			function(){
				$(this).attr("src", "img/bg_print_button.gif");
			}
		);
		
		//$("div#gallery").slideView();	//activates the thumb-gallery for animated gallery	
			
	});
