$(document).ready(function(){
		
	$("#flowtabs").tabs("#bildspel > div", {

		// enable "cross-fading" effect
		effect: 'fade',
		fadeOutSpeed: 1000,
		fadeInSpeed: 1000,
		// start from the beginning after the last tab
		rotate: true

		// use the slideshow plugin. It accepts its own configuration
		}).slideshow({
			interval: 3000,
			autoplay: false,
			clickable: false
	});

	
	// CHANGE URL ON TAB CLICK
	
	/*
	$('#t1').mouseup(function(){

		if ($(this).attr('href') == '/hr-enligt-consultatum/hr-strategi/'){
			$('#t2').attr('href','#orange');
			$('#t3').attr('href','#yellow');
			$('#t4').attr('href','#green');
			window.location = '/hr-enligt-consultatum/hr-strategi/';
		}

		else{
			$('#t2').attr('href','#orange');
			$('#t3').attr('href','#yellow');
			$('#t4').attr('href','#green');
			$(this).attr('href', '/hr-enligt-consultatum/hr-strategi/');
		}
		
	});

	$('#t2').mouseup(function(){
		if ($(this).attr('href') == '/hr-enligt-consultatum/hr-funktion/'){
			$('#t1').attr('href','#purple');
			$('#t3').attr('href','#yellow');
			$('#t4').attr('href','#green');
			window.location = '/hr-enligt-consultatum/hr-funktion/';
		}

		else{
			$('#t1').attr('href','#purple');
			$('#t3').attr('href','#yellow');
			$('#t4').attr('href','#green');
			$(this).attr('href', '/hr-enligt-consultatum/hr-funktion/');
		}
	});

	$('#t3').mouseup(function(){
		
		if ($(this).attr('href') == '/hr-enligt-consultatum/hr-processer/'){
			$('#t1').attr('href','#purple');
			$('#t2').attr('href','#orange');
			$('#t4').attr('href','#green');
			window.location = '/hr-enligt-consultatum/hr-processer/';
		}

		else{
			$('#t1').attr('href','#purple');
			$('#t2').attr('href','#orange');
			$('#t4').attr('href','#green');
			$(this).attr('href', '/hr-enligt-consultatum/hr-processer/');
		}
		
	});

	$('#t4').mouseup(function(){
		
		if ($(this).attr('href') == '/hr-enligt-consultatum/ledarskap/'){
			$('#t1').attr('href','#purple');
			$('#t2').attr('href','#orange');
			$('#t3').attr('href','#yellow');
			window.location = '/hr-enligt-consultatum/ledarskap/';
		}

		else{
			$('#t1').attr('href','#purple');
			$('#t2').attr('href','#orange');
			$('#t3').attr('href','#yellow');
			$(this).attr('href', '/hr-enligt-consultatum/ledarskap/');
		}
		
	});
	
	*/

	
	 
	// Cycle "VÅRA KUNDER"
	$('.cycle').cycle({
		fx: 'fade',
		pager: '#nav'
	});
	 
	 $('.cycle').cycle('pause');
	
	 
	 
	 // Show/hide Share by email form
	 $('#email').click(function(){
		$('.share-by-email').toggle();
	});
 
});
