if (location.host == 'banan.cz')
	{location = 'http://www.banan.cz';}

stepcarousel.setup({
	galleryid: 'topkarusel', //id of carousel DIV
	beltclass: 'scbelt', //class of inner "belt" DIV containing all the panel DIVs
	panelclass: 'scpanel', //class of panel DIVs each holding content
	autostep: {enable:true, moveby:1, pause: 4000},
	panelbehavior: {speed:350, wraparound:true, persist:true},
	defaultbuttons: {enable: true, moveby: 1, leftnav: ['/themes/banan-www/images/carousel-l.png', -30, 69], rightnav: ['/themes/banan-www/images/carousel-r.png', -36, 69]},
	statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels
	contenttype: ['inline'] //content setting ['inline'] or ['ajax', 'path_to_external_file']
})


// anchor scrolling
var lh = location.hash;

if ((window.movelower) && ((lh == null) || (lh == "")))
	{lh = "#banan";}

if ((lh != null) && (lh != ""))
	{
	$(document).ready(function() {
		$.scrollTo($("a[name="+lh.substring(1)+"]"), 350, {axis:"y"});
		});
	}
