jQuery(document).ready(function($){
		var $selected;
		$('.akordiyon div').hide();
		$('.akordiyon h3:first-child').click(function(e2){
				var d = $('div:first', $(this)[0].parentNode);
				if ($selected!=null && d.css('display')=='block')
				{
					d.hide('fast');
					$(d[0].parentNode).removeClass('on')
					$selected = null;
					return;
				}
				if ($selected){
					$selected.hide('fast');
					$($selected[0].parentNode).removeClass('on');
				}
				$selected=$('div:first', $(this)[0].parentNode).show('fast');
				$($(this)[0].parentNode).addClass('on');
		});
});

function popupAc(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
