jQuery(document).ready(function(){
    jQuery('#parallax').jparallax({
        triggerExposesEdges: true
    },
        { xtravel: -0.1, ytravel: 0 },
        { xtravel: 0.05, ytravel: 0 },
        { xtravel: 0, ytravel: 0 },
        { xtravel: 0.2, ytravel: 0 },
        { xtravel: 0.3, ytravel: 0 },
        { xtravel: 0.1, ytravel: 0 },
        { xtravel: 0.1, ytravel: 0 });
								 
	
	
	jQuery('ul.content-ul').children('li').children('div').hide();
	jQuery('ul.content-ul').children('li').click(function() { 
		jQuery(this).children('div').slideToggle(450);
	});
	
	if(UserAgent.search(/(iphone|ipod|opera mini|fennec|palm|blackberry|android|symbian|series60)/)>-1){
	  // mobiles Endgerät
	  document.location = "http://www.webfire.ch/mobilefire/";
	}
	
	if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('Windows Phone') != -1) || (navigator.userAgent.indexOf('HTC') != -1) || (navigator.userAgent.indexOf('htc') != -1) || (navigator.userAgent.indexOf('blackberry') != -1) || (navigator.userAgent.indexOf('android') != -1) || (navigator.userAgent.indexOf('Android') != -1) || (navigator.userAgent.indexOf('opera mini') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
		document.location = "http://www.webfire.ch/mobilefire/";
	}
	
	if (screen.width <= 699) {
		document.location = "http://www.webfire.ch/mobilefire/";
	}
	
});

function changeBackgroundColor(color, duration, container) {
    if (!$(container).hasClass('current')) {
      $(container).stop().animate({ backgroundColor: color }, duration);
    }
}

