var width = window.innerWidth || (window.document.documentElement.clientWidth || window.document.body.clientWidth);
var height = window.innerHeight || (window.document.documentElement.clientHeight || window.document.body.clientHeight);

function getSlideId() {
    var loc = (location.hash) ? location.hash : '#/sFreiburg/';
    var loc2 = loc.replace("/","").replace("/","").replace("#","");
    var slide = $('#'+loc2).attr("data");
    return ( slide > 1 ) ? slide : 1;

}

function getStartSlideId() {
    var loc = (location.hash) ? location.hash : '#/sFreiburg/';
    var loc2 = loc.replace("/","").replace("/","").replace("#","");
    return ( loc2 != '' ) ? loc2 : '#/sFreiburg/';
}


$('#accordion').liteAccordion({ 
		theme : 'basic', 
		containerWidth: (width) , 
		containerHeight: (height), 
		slideShow : false,
		headerWidth : 57,
		slideCallback: function() {
			if (this.attr('id') != "") {
				//location.hash = this.attr('id');
				location.hash = '/' + this.attr('id') + '/'
				//$('.contentContainer').bgStretcher.sliderDestroy();			
			}
		},
		firstSlide: getSlideId()
});


