$(document).ready(function(){
	$('#top_cont_extra').removeClass('elemHidden');
	$('#top_cont_extra').toggle();
	/* switch appearance of blocks */
	var x = $('#mid_top').html();
	var y = $('#mid_bot').html();
	$('#mid_top').html(y);
	$('#mid_bot').html(x);

	$('.subsubmenu').toggle();
	$('.subsubactive').toggle();
	$('.sublink').click(function(){
		if($(this).attr('kids')==0)
			return true;

		$('#'+$(this).attr('sub')).toggle();
		return false;
	});
});


function showExtren(){
	$('#top_cont_extra').toggle();
}



