// JavaScript Document
	window.onload=function(){
		externalLinks();
		if(document.getElementById('scrollingContainer')){
			initSlidingContent('scrollingContainer',1);
		}
		boy=document.getElementById('right_content').offsetHeight-20;
		boy_m=document.getElementById('main_content').offsetHeight;
		if(boy_m<=boy){
			document.getElementById('main_content').style.height=boy+"px";
		}
		
		

		var theRules = new Array();
		if(document.styleSheets[0].cssRules){
			theRules = document.styleSheets[0].cssRules;
		}else if(document.styleSheets[0].rules){
			theRules = document.styleSheets[0].rules;
		}
		for(i=0;i<theRules.length;i++){
			class_name=theRules[i].selectorText;
			class_karsilastirma='.cpy';
			if(class_name==class_karsilastirma){
				theRules[i].style.filter="alpha(opacity=40)"; 
				theRules[i].style.MozOpacity="0.40";
			}
		}
	}
	
	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 resim_goster(rsm,ids){
		i=1;
		while(document.getElementById('b_'+i)){
			document.getElementById('b_'+i).className='';
			i++;
		}
		if(ids==''){
			
		}else{
			document.getElementById(ids).className='r';
		}
		document.getElementById('resim').src=rsm;
	}

	function popup_ac(s){
		popup=window.open(s,'','width=634,height=500,scrollbars=yes');
		popup.moveTo(screen.width/2-317,screen.height/2-250)

	}