$(document).ready(function(){

	/********************************************
	********************************************/

	/* Toggle SidebarRight */
	$.timer(3000, function (timer) {
		$('#sidebarRightContent').each(function(){
			$(this).show('slide', { direction: 'left' }, 1500);
			var boxHeight = ($(this).height() + 30);
			$('#sidebarRightShadow').height(boxHeight);
		});
	    timer.stop();
	});

	$('#sidebarRightToggle a').click(function(){
		$('#sidebarRightContent').toggle('slide', { direction: 'left' }, 500);
	    return false;
	});

	/********************************************
	********************************************/

	/* E-Mails umwandeln: <a href="mailto:box [at-no-spam] server.tld">title</a> */
	$('a.email').each(function(){
		var to_replace = '=at-no-spam=';
		var link	   = $(this).attr('href').replace(to_replace, '@');
		var address	= $(this).html().replace(to_replace, '@');

		$(this).html(address);
		$(this).attr('href', link);
	});

	/********************************************
	********************************************/

});


