$(document).ready(function(){
	
	//LANDING PAGE ROLLOVER
	/*$('#landing').find('a').stop(true,true).hover(function(){
		$('span.landing_hover').animate({'margin-top':'-500px'}, 1000);
	}, function(){
		$('span.landing_hover').animate({'margin-top':'0px'}, 500);
	});*/
	
	$('#landing').find('a').stop(true,true).hover(function(){
		$('span.landing_hover').fadeTo(500, 1);
	}, function(){
		$('span.landing_hover').fadeOut(300, 0);
	});
	
	//MENU HOVER
	$('li.g_menu_li a img').stop(true,true).hover(function(){
		$(this).fadeTo(150, 0.5);
	}, function(){
		$(this).fadeTo(75, 1);
	});
	
	//KONZEPTION BUTTON
	
	$('#button').click(function(){		
		$(this).css({'background-image':'url(fileadmin/templates/images/konzept_open.png'});
		$('#inhalt').slideDown(500);
	});
	
});
