// ajax_accordeon.js v0.1
// copyright 2008
// Easy2play BV

$(document).ready(function() {
	
	$('div.accordeon> .title').hover(function() {
  	$(this).addClass('titlehover');
	}, function() {
  	$(this).removeClass('titlehover');
	}); 
	
  $('div.accordeon> .entry').hide();  
  $('div.accordeon> .title').click(function() {
    var $nextDiv = $(this).next('div');
 	$('div.accordeon> .entry').slideUp('slow',function(){ if(jQuery.browser.msie) this.style.removeAttribute('filter');});
 	$nextDiv.show('fast',function(){ if(jQuery.browser.msie) this.style.removeAttribute('filter');});

  });
}); 