// JavaScript Document
	window.onload=function(){
		externalLinks();
		if(document.getElementById('scrollingContainer')){
			initSlidingContent('scrollingContainer',1);
		}
		
		
		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='#content #header_content #menu_bg';
			if(class_name==class_karsilastirma){
				theRules[i].style.filter="alpha(opacity=65)"; 
				theRules[i].style.MozOpacity="0.65";
			}
		}
	}

	function MM_openBrWindow(theURL,winName,features) { //v2.0
	  window.open(theURL,winName,features);
	}
