
$(document).ready(function(){

		$(".suche_but").show();
		

		/*$("#navigation_holder li").mouseenter(function(){
				$(this).stop().animate(
					{backgroundColor:"#f6af6e"}, 
					{duration:1})
				});
		$("#navigation_holder li").mouseleave(function(){
				$(this).stop().animate(
					{backgroundColor:"#fdf8f2"}, 
					{duration:180})
				});
		$("#navigation_holder").mouseleave(function(){
				$("#navigation_holder li").stop().animate(
					{backgroundColor:"#fdf8f2"}, 
					{duration:180})
				});*/
		
		if($.browser.msie){}else{ 
				  
			$(".suche_but").bind("click", function(){
												 
				$(".nav_sufu").slideToggle("fast");
				
			});
		}
		
		$("li").bind("click", function(){
									   
			$(this.all.children).click();							   
		
		});
		
		
		
		$(".event_button").show();
		
		$(".event_button_right").show();
		
		$(".anmeldung").ceebox({borderColor:'#dcdcdc',boxColor:"#fff",htmlWidth:600,htmlHeight:420});
		
		$(".bewerbung").ceebox({borderColor:'#dcdcdc',boxColor:"#fff",htmlWidth:500,htmlHeight:400});
		
		$(".newsletter").ceebox({borderColor:'#dcdcdc',boxColor:"#fff",htmlWidth:500,htmlHeight:200});
		
		$('.selectcateg').live("click", function(){
				if($(this).attr('categ')==="all") $(".event").show(500);
				else {
					$('.event').hide(500);
					$('.'+$(this).attr('categ')).stop('false,false').show(500);
				}
		});
		
	});



