
// simple modal window based on jQuery (must be called after jQuery)
$(document).ready(function() {	
		
	
	 $('#sidebar h2').click(function (){
	 $(this).toggleClass('toggle');
	 $(this).next().slideToggle(500);
	 });
	 
	 $('#sidebar-right h2').click(function (){
	 
	 $(this).toggleClass('toggle');
	 $(this).next().slideToggle(500);
	 });
	 
	
});


