// Six Reasons page - expand div section based on anchor link in url and scroll to it
jQuery(function($) {
	var url=window.location.href;

	if ( url.indexOf('#s1') != -1 ) {
		$('#environment').toggle();
		$('#focus-col1').toggle();
		$('#focus-exp1').toggle();
		document.getElementById('s1').scrollIntoView(true);
    	} 
	if ( url.indexOf('#s2') != -1 ) {
		$('#a-holistic-section').toggle();
		$('#focus-col2').toggle();
		$('#focus-exp2').toggle();
		document.getElementById('s2').scrollIntoView(true);
    	} 
	if ( url.indexOf('#s3') != -1 ) {
		$('#early-start').toggle();
		$('#focus-col3').toggle();
		$('#focus-exp3').toggle();
		document.getElementById('s3').scrollIntoView(true);
    	} 
	if ( url.indexOf('#s4') != -1 ) {
		$('#character-development').toggle();
		$('#focus-col4').toggle();
		$('#focus-exp4').toggle();
		document.getElementById('s4').scrollIntoView(true);
    	} 
	if ( url.indexOf('#s5') != -1 ) {
		$('#years-experience').toggle();
		$('#focus-col5').toggle();
		$('#focus-exp5').toggle();
		document.getElementById('s5').scrollIntoView(true);
    	} 
	if ( url.indexOf('#s6') != -1 ) {
		$('#trusted-Y').toggle();
		$('#focus-col6').toggle();
		$('#focus-exp6').toggle();
		document.getElementById('s6').scrollIntoView(true);
    	} 


});

function expand(img_c, img_e, div) {
	var el = document.getElementById(div);

	if ( el.style.display != 'none' ) {
		el.style.display = 'none';
		document.getElementById(img_c).style.display = '';
		document.getElementById(img_e).style.display = 'none';

		
	}
	else {
		el.style.display = '';
		document.getElementById(img_e).style.display = '';
		document.getElementById(img_c).style.display = 'none';

	}

}

function expand2(img_c, img_e, div) {
	$('#'+div).toggle();
	$('#'+img_c).toggle();
	$('#'+img_e).toggle();
}

function poponload()
{
	window.open ("http://ymaryland.org/pages/sports/sports-philosophy.php","sports_philosophy","scrollbars=1,width=380,height=550"); 
}

function poponload2( url, title, width, height ) {
	var features = '';
	features += 'scrollbars=1,';
	features += 'width=' + width + ',';
	features += 'height=' + height;

	window.open( url, title, features );
}

function poponload_sixreasons( section_num ) {
	var url = 'http://ymaryland.org/pages/sixreasons.php#s' + section_num;
	var name = 'window';
	var width = 682;
	var height = 550;

	if( section_num == 1 )
		poponload2( url, name, width, height );
	else if( section_num == 2 )
		poponload2( url, name, width, height );
	else if( section_num == 3 )
		poponload2( url, name, width, height );
	else if( section_num == 4 )
		poponload2( url, name, width, height );
	else if( section_num == 5 )
		poponload2( url, name, width, height );
	else if( section_num == 6 )
		poponload2( url, name, width, height );	 
}


function popup_6reasons()
{
	window.open ("http://ymaryland.org/pages/sixreasons.php","sports_philosophy","scrollbars=1,width=645,height=750"); 
}




