//   $('dl.akordiyon dd:not(:first)').hide();
//  	$('dl.akordiyon dt').click(function(){
//		   $(this).addClass("acik").siblings().removeClass("acik"); 
//		   $('dl.akordiyon dd').slideUp();
//		   $(this).next().slideDown();
//		   return false;
//  });
   
$(function(){
		
	// akordiyon kodu
   $('dl.akordiyon dd').hide();
//   //$('dl.akordiyon dt:first, dl.akordiyon dd:first').addClass("acik");
//   $('dl.akordiyon dt').click(function(){
//		   $(this).addClass("acik").siblings().removeClass("acik"); 
//		   $('dl.akordiyon dd').slideUp();
//		   $(this).next().slideDown();
//		   return false;
//   });


$('dl.akordiyon dt').click(function(){
	$(this).next().slideToggle();
	$('dt.acik:first').next().slideUp();
	$(this).toggleClass("acik").siblings().removeClass("acik");
});

   
	//menu
	$('#menu a[rel="popup"]').parent().hover(function(){ $(this).addClass('on').children(':last').show(); }, function(){ $(this).removeClass('on').children(':last').hide(); });	
		
	$('li#m910 ul li a').hover(function(){ $(this).children(':last').show(); }, function(){ $(this).children(':last').hide(); });	
})
