function ge(a) { return document.getElementById(a); }


			function mOpen()
			{
				if(ge("icerikAlani")){ge("icerikAlani").style.position = "static";}
				if(ge("icerikAlaniTablo")){ge("icerikAlaniTablo").style.position = "static";}
if(ge("solMenu")){ge("solMenu").style.position = "static";}
			}
			
			function mClose()
			{
				if(ge("icerikAlani")){ge("icerikAlani").style.position = "relative";}
				if(ge("icerikAlaniTablo")){ge("icerikAlaniTablo").style.position = "relative";}
if(ge("solMenu")){ge("solMenu").style.position = "relative";}
			}
		
jQuery(document).ready(function($){
	var $selected;
	$('.accordion div').hide();
	$('.accordion a: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) { 
  window.open(theURL,winName,features);
}