/*SPECKMANN SCRIPT*/

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-17146737-13']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();





$(document).ready(function() {
	
	//RemoveClass 
	$('html').removeClass('no-js');
	$('html').addClass('js');
	
	/*		############# PROJEKTE ##############     */
	

	
	$('.partner').mouseenter(function() {
		$(this).find('.csc-textpic-imagewrap').fadeTo('fast',0.01);
	}).mouseleave(function(){
		$(this).find('.csc-textpic-imagewrap').fadeTo('fast',1);
	});
	
	$('#navigation a.off').mouseenter(function() {
		$(this).toggleClass('active', 200);
	}).mouseleave(function(){
		$(this).toggleClass('active', 200);
	});
	
	
	/*$('a.button').mouseenter(function() {
		$(this).toggleClass('active', 200);
	}).mouseleave(function(){
		$(this).toggleClass('active', 200);
	});*/
	
	
	
	

/*

	Section Startseite slider
	
*/

	var news = 5;
	var aktnews = 1;

	//Start first News
	$('#newsid0').fadeIn();

	setInterval(function() {
          
		var shownews = "#newsid"+aktnews;
		$('.news').fadeOut(1000);
		$(shownews).fadeIn(1000);
		
		if(aktnews < 5){
			aktnews = aktnews+1
		}else{
			aktnews = 0;
		}
		  
    }, 5000);
	

});






