var sliderposition = 1;
$(document).ready(function()
{
	$('.spinlogo').hover(function()
	{
		$(this).find('span').slideToggle('slow');
	},function()
	{
		$(this).find('span').slideToggle();
	});
	

	$('.index-banner').cycle({fx:'fade',speed:2000,timeout:5000,pager:'.box-nav'});
	$('.index-slide-nav-mid-slider').jCarouselLite({
    auto: 1500,
    speed: 1200,
	btnNext: ".index-slide-nav-right",
    btnPrev: ".index-slide-nav-left"
});

count=0;
	activeSlideItem=0;
	$('.bath-bottom-nav-mid ul').find('li').each(function()
	{
		count++;
		if($(this).attr('class')=="active")
		{
			activeSlideItem=count-1;
		}
	});
	count=0;

	if(children=$('.bath-bottom-nav-mid').find('ul').children())
	{
	//alert(children.size());
	if(children.size()>4)
	{
		$('.bath-bottom-nav-mid').jCarouselLite({
		btnNext: ".bath-bottom-nav-right img",
		btnPrev: ".bath-bottom-nav-left img",
		speed: 800,
		visible: 4,
		start:activeSlideItem
	});
}
}

	/* $('.bath-slide-nav-mid').jCarouselLite({
	btnNext: ".bath-slide-nav-left",
    btnPrev: ".bath-slide-nav-right",
	speed: 800,
	visible: 4,
	scroll: 4
	});
	*/
	
	
	
});

function mycarousel_initCallback(carousel) {
    jQuery('.bath-box-nav a').bind('click', function() {
        carousel.scroll(jQuery.jcarousel.intval((jQuery(this).text()*4)-3));
		sliderposition = jQuery(this).text();
		$('.bath-box-nav a').removeClass('active');		
		jQuery(this).addClass('active');
        return false;
    });
	
	jQuery('.bath-slide-nav-right a').bind('click', function() {
        carousel.next();
		//alert(carousel.intval());
        return false;
    });

    jQuery('.bath-slide-nav-left a').bind('click', function() {
        carousel.prev();
        return false;
    });
};

function setsliderposition()
{
	$('.bath-box-nav a').removeClass('active');
	//alert(sliderposition);
	$('.bath-box-nav a#sliderposition'+sliderposition).addClass('active');
}

// Ride the carousel...
$(document).ready(function() 
{
	
    
	if(children=$('.bath-slide-nav-mid').find('ul').children())
	{
		//alert(children.size());
		if(children.size()>4)
		{
		$(".bath-slide-nav-mid").jcarousel({
			scroll: 4,
			visible: 4,
			speed: 800,
			initCallback: mycarousel_initCallback
		});
		}
	}
	
	$('.bath-box-nav a:first').addClass('active');
	
	$('.bath-slide-nav-left a').click(function(){
		if(sliderposition>1) sliderposition--;
		setsliderposition()
	});
	$('.bath-slide-nav-right a').click(function(){
		maxaantal=$('#slideaantal').text();
		if(sliderposition<maxaantal) sliderposition++;
		setsliderposition()
	});
	
});

function initMenu() {
  $('.brochures ul .content').hide();
  $('.brochures ul li a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul .content')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul .content')) && (!checkElement.is(':visible'))) {
        $('.brochures ul .content:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  }
$(document).ready(function() {initMenu();});


function ie6warning()
{
document.getElementById('ie6warning').innerHTML = '<img src="/images/logo.gif" alt="" /><br /><br />You are using Internet Explorer 6, which is no longer supported.<br /><br />Please upgrade your browser in order to enjoy this and many other modern websites.<br /><br /><a href="http://www.microsoft.com/windows/internet-explorer/default.aspx" target="_blank">Click here to upgrade to<br />Internet Explorer 8.</a>';
}
