var prefsLoaded = false;

//================================================================================================//
window.addEvent('domready', function() {
	if($('sFontButton')) $('sFontButton').addEvent('click',function(){settings('font_m')});
	if($('bFontButton')) $('bFontButton').addEvent('click',function(){settings('font_p')});
	if($('dFontButton')) $('dFontButton').addEvent('click',function(){settings('reset')});
	//==============================================================
	var searchText='ابحث في الموقع';
	if($('searchBox')){
		$('searchBox').set('value',searchText)
		$('searchBox').addEvent('focus',function(){if($('searchBox').get('value')==searchText) $('searchBox').set('value','')});
		$('searchBox').addEvent('blur',function(){if($('searchBox').get('value')=='') $('searchBox').set('value',searchText)});
	    $('searchBox').addEvent('keydown',function(e){ if(e.key == "enter" && $('searchBox').get('value')!='') window.location.assign('?com=search&key='+$('searchBox').get('value'))});
	    if($('searchButton')) $('searchButton').addEvent('click',function(){if($('searchBox').get('value')!=searchText) window.location.assign('?com=search&key='+$('searchBox').get('value')) });
	} 
    //==============================================================
	// Sortable Tables
	if($('sortTable')){
		var itable=new HtmlTable($('sortTable'),{sortable:1,zebra:1});
        if($('trainingDB')) itable.sort(2,1,0);
	}
 	// Page Tables
    $$('table.pageTable').each(function(el){
		var itable=new HtmlTable(el,{zebra:1});
	});
    //==============================================================
    // daily readings
    if($('scrollPath')){
    	var scrollPath = new amerScroller('scrollPath','div',-105,'up',{delay:3400,fxtype:'slide','transition':Fx.Transitions.Expo.easeOut});
    	$('scrollPath').addEvent('mouseover',function(){scrollPath.Stop()});
		$('scrollPath').addEvent('mouseout',function(){scrollPath.Start()});
    }
    
    //imageScroller  //var imageScroll = new amerScroller('imageSlider','img',0,'down',{delay:5000,fxtype:'fade','transition':Fx.Transitions.Expo.easeOut});
    
	// fading blocks
	if($('fadecontainer')) var fadePath =   new amerScroller('fadecontainer' ,'div',0,'',{delay:3400,fxtype:'fade','transition':Fx.Transitions.Expo.easeInOut});
	// newsflash
	if($('newsContainer2')){
		var newsScroll = new amerScroller('newsContainer' ,'a',-528,'right',{delay:5000,duration:2000,fxtype:'slide','transition':Fx.Transitions.Expo.easeInOut});
		$('newsFlash').addEvent('mouseover',function(){newsScroll.Stop()});
		$('newsFlash').addEvent('mouseout',function(){newsScroll.Start()});
	} 
	//==============================================================
	//top menus//$$('ul.menu_top').each(function(el){//new UvumiDropdown(el.get('id'));});
	//side menus
	$$('ul.menu_side').each(function(el){
		new UvumiDropdown(el.get('id'),{openDelay:0,closeDelay:0,duration:200,mode:'vertical'});
	});
	//==============================================================

});
//================================================================================================
