$(document).ready(function(){
	//select boxes style
	$("select").uniform(); 
	
	//lang-switcher
	$('.lang_switcher ul ul').hide();
	$('.lang_switcher ul ul').mouseout().hide();
	$('.lang_switcher li a.active').click(function() {
		$(this).next().slideToggle('slow', 'easeOutBounce');
		return false;
	});
	
	//modules_read_more
	$('.modules_readmore div.more').hide();
	$('.modules_readmore').click(function() {
		if($(this).children().find('div.more').is(":visible")){
			$(this).children().find('a').show();
			$(this).children().find('div.more').slideUp('slow');
		}
		else{
			$(this).children().find('a').hide();
			$(this).children().find('div.more a').show();
			$(this).children().find('div.more').slideDown('slow');
		}
		
		return false;
	});
	
	//news
	$('#news').innerfade({
		animationtype: 'fade',
		speed: 'slow',
		timeout: 4000,
		type: 'random',
		containerheight: '1em'
	});
	
	//events
	$('.events_panes .less').click(function(){
		var details = $(this).next('.more');
		if (details.css('display') != 'block'){
			$(this).attr("style", "background:url(images/expand_minus.gif) no-repeat 0 8px;");
			details.show('slow');
		}
		else{
			$(this).attr("style", "background:url(images/expand_plus.gif) no-repeat 0 8px;");
			details.hide('slow');
		}
	});
});
