var Site = {
	
	init: function() {
		Site.Menu.init();
		Site.initSlideShow();
		Site.initLastNews();
		Site.initPersons();
	},
	
	initSlideShow: function() {
		if ($("#slideshow > img").size() > 1) {
			$('#slideshow').cycle({
				fx: 'fade',
				delay:   4000 
			});
		}
	},
	
	initLastNews: function() {
		if ($("#lastnews").length > 0) {
			$('#lastnews').cycle({
				slideExpr: 	'a',
				fx:     'scrollDown', 
				timeout: 4500,
				speed:  800,
				pause:  true
			});
		}	
	},
	
	initPersons: function() {
		var activeDefault = false;
		if ((window.location.hash).replace('#','')) {
			activeDefault = (window.location.hash).replace('#','');
			var categories = {};
			var cmp = 0;
			$('div#persons h3.category').each(function() { categories[$(this).attr('id').replace('category_','')] = cmp++; });
			if (typeof categories[activeDefault] != 'undefined') activeDefault = categories[activeDefault];
		}
		if ($(".accordion").size() >= 1) {
			$( ".accordion" ).accordion({
				autoHeight: false,
				navigation: true,
				collapsible: true,
				active: activeDefault
			});
		}	
	}
	
};

Shin.loadJavascript(';js/site.map.js');
