function slideSwitch() {
    var $active = $('#slideshow img.active');

    if ( $active.length == 0 ) $active = $('#slideshow img:last');

    var $next =  $active.next().length ? $active.next()
        : $('#slideshow img:first');

    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 3000, function() {
            $active.removeClass('active last-active');
        });
}

$(function() {
    setInterval( "slideSwitch()", 5000 );
});

function getContent() {
	var contImages=	'<a href="views/freizeit/details/fahrschule_3.html"><img src="neue_vorteilspartner/fahrschule_elsinger2.jpg" alt="Fahrschule Elsinger" /></a>' +
					'<a href="views/essen_trinken/details/cafe_30.html"><img src="neue_vorteilspartner/scala.jpg" alt="SCALA" /></a>' +
					'<a href="views/beauty/details/friseursalon_15.html"><img src="neue_vorteilspartner/fingers.jpg" alt="fingerīs Friseure" /></a>' +
					'<a href="views/essen_trinken/details/asiatisch_11.html"><img src="neue_vorteilspartner/lavela.png" alt="La Vela" /></a>' +
					'<a href="views/beauty/details/friseursalon_14.html"><img src="neue_vorteilspartner/agnello.png" alt="Agnello" /></a>' +
					'<a href="views/wellness/details/alternative_therapie_5.html"><img src="neue_vorteilspartner/psychologische_beratung_nbg.png" alt="Psychologische Beratung" /></a>';
	document.getElementById("rotation").innerHTML = contImages;	
}

function getContent1() {
	var contImages=	'<a href="../views/freizeit/details/fahrschule_3.html"><img src="../neue_vorteilspartner/fahrschule_elsinger2.jpg" alt="Fahrschule Elsinger" /></a>' +
					'<a href="../views/essen_trinken/details/cafe_30.html"><img src="../neue_vorteilspartner/scala.jpg" alt="SCALA" /></a>' +
					'<a href="../views/beauty/details/friseursalon_15.html"><img src="../neue_vorteilspartner/fingers.jpg" alt="fingerīs Friseure" /></a>' +
					'<a href="../views/essen_trinken/details/asiatisch_11.html"><img src="../neue_vorteilspartner/lavela.png" alt="La Vela" /></a>' +
					'<a href="../views/beauty/details/friseursalon_14.html"><img src="../neue_vorteilspartner/agnello.png" alt="Agnello" /></a>' +
					'<a href="../views/wellness/details/alternative_therapie_5.html"><img src="../neue_vorteilspartner/psychologische_beratung_nbg.png" alt="Psychologische Beratung" /></a>';
	document.getElementById("rotation").innerHTML = contImages;		
}

function getContent2() {
	var contImages=	'<a href="../../views/freizeit/details/fahrschule_3.html"><img src="../../neue_vorteilspartner/fahrschule_elsinger2.jpg" alt="Fahrschule Elsinger" /></a>' +
					'<a href="../../views/essen_trinken/details/cafe_30.html"><img src="../../neue_vorteilspartner/scala.jpg" alt="SCALA" /></a>' +
					'<a href="../../views/beauty/details/friseursalon_15.html"><img src="../../neue_vorteilspartner/fingers.jpg" alt="fingerīs Friseure" /></a>' +
					'<a href="../../views/essen_trinken/details/asiatisch_11.html"><img src="../../neue_vorteilspartner/lavela.png" alt="La Vela" /></a>' +
					'<a href="../../views/beauty/details/friseursalon_14.html"><img src="../../neue_vorteilspartner/agnello.png" alt="Agnello" /></a>' +
					'<a href="../../views/wellness/details/alternative_therapie_5.html"><img src="../../neue_vorteilspartner/psychologische_beratung_nbg.png" alt="Psychologische Beratung" /></a>';
	document.getElementById("rotation").innerHTML = contImages;		
}

function getContent3() {
	var contImages=	'<a href="../../../views/freizeit/details/fahrschule_3.html"><img src="../../../neue_vorteilspartner/fahrschule_elsinger2.jpg" alt="Fahrschule Elsinger" /></a>' +
					'<a href="../../../views/essen_trinken/details/cafe_30.html"><img src="../../../neue_vorteilspartner/scala.jpg" alt="SCALA" /></a>' +
					'<a href="../../../views/beauty/details/friseursalon_15.html"><img src="../../../neue_vorteilspartner/fingers.jpg" alt="fingerīs Friseure" /></a>' +
					'<a href="../../../views/essen_trinken/details/asiatisch_11.html"><img src="../../../neue_vorteilspartner/lavela.png" alt="La Vela" /></a>' +
					'<a href="../../../views/beauty/details/friseursalon_14.html"><img src="../../../neue_vorteilspartner/agnello.png" alt="Agnello" /></a>' +
					'<a href="../../../views/wellness/details/alternative_therapie_5.html"><img src="../../../neue_vorteilspartner/psychologische_beratung_nbg.png" alt="Psychologische Beratung" /></a>';
	document.getElementById("rotation").innerHTML = contImages;		
}

function slideSwitch2() {
    var $active = $('#rotation a.active');

    if ( $active.length == 0 ) $active = $('#rotation a:last');

    var $next =  $active.next().length ? $active.next()
        : $('#rotation a:first');

    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 3000, function() {
            $active.removeClass('active last-active');
        });
}

$(function() {
    setInterval( "slideSwitch2()", 5000 );
});


jQuery(document).ready(function() {
	$(".friends").addClass("displayNone");
	
	$(".checkboxFriends").click(function() {
	var thisCheck = $(this);
	if (thisCheck.is (':checked')) {
		$(".friends").removeClass("displayNone");
	} else {
	    $(".friends").addClass("displayNone");
	}
	});
	
	$(".clubs").addClass("displayNone");
	
	$(".checkboxClubs").click(function() {
	var thisCheck = $(this);
	if (thisCheck.is (':checked')) {
		$(".clubs").removeClass("displayNone");
	} else {
	    $(".clubs").addClass("displayNone");
	}
	});
});

