var $j = jQuery.noConflict();

$j(document).ready(function() {
	
	//kalender accordion stylez
	$j('.eventbody').hide();
	$j('.eventheader').click(function() {
		$j(this).next('li.eventbody').slideToggle('fast');
	});
	
	//page-link hover stylez
	$j('div#pages-box li').hover(function() {
		$j(this).css('background-color','#1d1a18');
	}, function() {
		$j(this).css('background-color','');
	});
		
	/*//comments accordion stylez
	$j('#comments-list ol').hide();
	$j('#comments-list h3').click(function() {
		$j(this).next('#comments-list ol').slideToggle('fast');
	});*/
	
	/*$j('#respond .formcontainer').hide();
	$j('#respond h3').click(function() {
		$j(this).next('#comments-list ol').slideToggle('fast');
	});*/
	
	
	//comment datum functie
	$j('.comment-meta').hide();
	$j('li.comment').hover(function() {
		$j(this).children('.comment-meta').show();
	}, function() {
		$j(this).children('.comment-meta').hide();
	});
	
	//media pagina accordion
	$j('#medmovies, #medsounds').hide();
	$j('.medtitel').click(function() {
		$j(this).next('.medcollapsed').slideToggle('fast');
	});
	
});
	  
