// JavaScript Document

$(document).ready(function(){

	$('.yoo-gallery a').lightBox();

	$('#topmenu ul ul').css({display: "block"});
	$('#topmenu ul ul').hide();

	$("#topmenu li a").hover(function() {	
		$(this).parent().find("ul").slideDown("fast");	
		//$(this).css({backgroundColor: "#333"});
									},
	function() {		  
									  
	});
	$("#topmenu li").hover(function() {	
											  
									},
	function() {	
		$(this).find("ul").slideUp("fast");	  
									  
	});
	$("#topmenu ul ul").hover(function() {	

		$('.item4 a[title="Fotografie"]').css({backgroundColor: "#333", color: "#efb007"});
									},
	function() {		  
		$('.item4 a[title="Fotografie"]').css({backgroundColor: "#FFF", color: "#000"});						  
	});
	$('.item4 a[title="Fotografie"]').hover(function() {	

		$(this).css({backgroundColor: "#333", color: "#efb007"});
									},
	function() {		  
		$(this).css({backgroundColor: "#FFF", color: "#000"});						  
	});
	//$.scrollTo('#gong', 1000);
	

});