$(document).ready(function() {
/*------------------------------------------------------------------------------------------------------------------------------*/	//Top navigation Function
	
	//Accordian Slider Function
	$('.accolist ul.accbox:first').show();
  	$('.accolist li a:first').addClass("active");
  	$('.accolist li a').click(function(){
      var checkElement = $(this).next();
      if((checkElement.is('ul.accbox')) && (checkElement.is(':visible'))) {
       return false;
		}
      if((checkElement.is('ul.accbox')) && (!checkElement.is(':visible'))) {
        $('.accolist ul.accbox:visible').slideUp('normal');
        checkElement.slideDown('normal');
		return false;
        }
      }
    );
	
	
/*------------------------------------------------------------------------------------------------------------------------------*/	
});


//Startseite
$(document).ready(function() {
	//Homepage Slider Function
	$('.bannerslider').cycle({ 
		fx:     	'scrollVert', 
		speed:  	1000, 
		timeout: 7000,
		pager:  	'.bnr-paging'
	});
});



//Reisen
$(document).ready(function(){
	$("a[rel='mapgallery']").colorbox();
	$("a[rel='hotelgallery']").colorbox();
	$("a[rel='videolink']").colorbox({slideshow: true});
});



//Unternehmen
$(document).ready(function(){
	$("a[rel='homegallery']").colorbox();
});



