jQuery(document).ready(function () {
				jQuery('#slideshow').crossSlide({
				  sleep: 3,
				  fade: 1
				}, [
				  { src: 'themes/lackdesign24/galerie/1.jpg' },
				  { src: 'themes/lackdesign24/galerie/2.jpg' },
				  { src: 'themes/lackdesign24/galerie/3.jpg' },
				  { src: 'themes/lackdesign24/galerie/4.jpg' },
				  { src: 'themes/lackdesign24/galerie/5.jpg' },
				  { src: 'themes/lackdesign24/galerie/6.jpg' }
				]);
				

				ScrollLoad ("scrollholder", "scroll", false);
				
				$('.typographya').lightBox(); // Select all links in object with gallery ID
				
				if(window.location.href=="http://www.lackdesign24.de/" || window.location.href=="http://lackdesign24.de/" || window.location.href=="http://www.lackdesign24.de/#"  || window.location.href=="http://lackdesign24.de/#"){
					showDiv();
				}
				
				
				
				});


	function showDiv(){
		var oDiv = document.getElementById("Pop-Up");
		oDiv.style.display = 'block';
		if (parseInt(oDiv.style.top) < 300) {
			jQuery("#Pop-Up").css("top",parseInt(oDiv.style.top)+2);
			setTimeout("showDiv()", 5);
		}
	}




	function hideDiv(){
		var oDiv = document.getElementById("Pop-Up");
		oDiv.style.display = 'none';
	}

