$(document).ready(function(){
	$('#header').hide().fadeIn(6000);

//	$(".header-logo").animate({ paddingLeft: "20px", }, 3000 );

	$('#content').hide().fadeIn(500);

	$('#content-10').hide().fadeIn(1000);
	
	$('#content-20').hide().fadeIn(2000);
	
	
	$(".content-10-navi-10").fadeTo("fast", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$(".content-10-navi-10").hover(function(){
	$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	},function(){
	$(this).fadeTo("fast", 0.7); // This should set the opacity back to 30% on mouseout
	});
						
								
	$(".content-10-navi-20").fadeTo("fast", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$(".content-10-navi-20").hover(function(){
	$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	},function(){
	$(this).fadeTo("fast", 0.7); // This should set the opacity back to 30% on mouseout
	});
	

	$("#input-suche").fadeTo("fast", 0.6); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$("#input-suche").hover(function(){
	$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	},function(){
	$(this).fadeTo("fast", 0.6); // This should set the opacity back to 30% on mouseout
	});
	

	$("#input-login").fadeTo("fast", 0.6); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$("#input-login").hover(function(){
	$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	},function(){
	$(this).fadeTo("fast", 0.6); // This should set the opacity back to 30% on mouseout
	});

	$("#content-10-callback").fadeTo("fast", 0.6); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$("#content-10-callback").hover(function(){
	$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	},function(){
	$(this).fadeTo("fast", 0.6); // This should set the opacity back to 30% on mouseout
	});
	
	
	jQuery('#imagecycle-coin_c113').show().coinslider({
		effect: 'rain',
		width: '560',
		height: '344',
		spw: '5',
		sph: '5',
		sDelay: 30,
		titleSpeed: 500,
		navigation: true,
		links: false,
		opacity: 0.9,
		delay: 5000,
		hoverPause: true,
		prev: '<',
		next: '>'
	});
	

});
					   
