function HowItWorks( aObj, detailID ) {
		for( var i = 1; i < 6; i++ ) {
			document.getElementById( 'how-detail' + i ).style.display='none';
			document.getElementById( 'hownav' + i ).getElementsByTagName('A')[0].className='';
		}
		aObj.className = 'selected';
		aObj.blur();
		document.getElementById(detailID).style.display='block';
}

function television_video( url ) {
	var flashplayer = document.getElementById( 'flash-player' );
	if( flashplayer ) flashplayer.playVideo( url );
}

$( function() {
	if( $( '.questions-to-ask-your-orthodontist' ).length > 0 ) {
		$( 'dd a' )
		.attr('target','_blank')
		.click( function( e ) {
			var w = window.open( $(this).attr('href'), '_blank', 'resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=no,width=965,height=500,status' );
			if( w && !w.closed ) {
				e.preventDefault();
			}
		} );
	}
	if( window.opener ) {
		$('a[rel="back"]')
		.attr('href','#')
		.text('[x] Close Window')
		.click( function(e) {
			e.preventDefault();
			window.close();
		} );
	}
} );
