// JavaScript Document
var $ss = $('#slideshow');

// add slides to slideshow
if(window.location.href.indexOf('/en/')>-1 || window.location.href.indexOf('/fr/')>-1){
	$ss.append('<img src="../images/bg_header_anreise.jpg" />');
	$ss.append('<img src="../images/bg_header_restaurant.jpg" />');
}
else{
	$ss.append('<img src="images/bg_header_anreise.jpg" />');
	$ss.append('<img src="images/bg_header_restaurant.jpg" />');
}

// start the slideshow 
$ss.cycle();

