//Called on page load to extend the side drop shadows the correct length
function sizeLogo(){
		
	var css_rules=document.styleSheets[1].cssRules ? document.styleSheets[1].cssRules : document.styleSheets[1].rules;
	
	for(i=0;i<css_rules.length;i++){
	
		if(css_rules[i].selectorText==".logo_size"){
			
			document.getElementById("main_logo_div").style.width=css_rules[i].style.width;
			document.getElementById("main_logo_div").style.height=css_rules[i].style.height;
			document.getElementById("main_logo_div").style.left=css_rules[i].style.left;
			document.getElementById("main_logo_div").style.top=css_rules[i].style.top;
	
		}
	}
}


