// JavaScript Document
$(document).ready(function(){
	$('#slides1').bxSlider({
		prev_image: 'bilder/prev.png',
		next_image: 'bilder/next.png',
		wrapper_class: 'slides1_wrap',
		speed: 500, 
		pager: false,
		margin: 0,
		auto: true,
		pause: 2000,  
		auto_controls: true,
		stop_text: '',              // text to be displayed for the 'stop' control
     	start_text: ''           // text to be displayed for the 'start' control
	});
});
$(document).ready(function(){
	$('#slides2').bxSlider({
		prev_image: 'bilder/prev.png',
		next_image: 'bilder/next.png',
		wrapper_class: 'slides1_wrap',
		speed: 2800, 
		margin: 0,
		auto: true,
		ticker: true,                  // determines if slideshow will behave as a constant ticker
		ticker_controls: true,         // determines if 'start'/'stop' ticker controls are displayed (ticker mode only)
		ticker_direction: 'next',       // order in which slides will transition (ticker mode only)
		ticker_hover: true,             // determines if slideshow will pause while mouse is hovering over slideshow
		stop_text: 'stop',              // text to be displayed for the 'stop' control
		auto_controls: true
	});
});

