// JavaScript Document
	window.onload=function(){
		externalLinks();
		boyutlandir();
		/*if(document.getElementById('scrollingContainer')){
			initSlidingContent('scrollingContainer',1);
		}*/
	}

	function boyutlandir(){
		boyut=(FIND('main').offsetHeight+11)+"px";
		FIND('s_1').style.height=boyut;
		FIND('s_2').style.height=boyut;
	}
	
	function FIND(item) {
		if( window.mmIsOpera ) return(document.getElementById(item));
		if (document.all) return(document.all[item]);
		if (document.getElementById) return(document.getElementById(item));
		return(false);
	}
	
	function hedef(url){
		window.location=url;
	}
	
	function alt_menu_over(obj){
		if(document.getElementById(obj).className!='s'){
			document.getElementById(obj).className="r";
		}
	}
	function alt_menu_out(obj){
		if(document.getElementById(obj).className!='s'){
			document.getElementById(obj).className='';
		}
	}	