var content = new Array(
		{
			src : 'iMusic',
			text : 'Part Beatles, part Elvis, part Beach Boys with the likes of early Springsteen, Steve Earle and the Kinks thrown in for good measure. Always clever, sometimes humorous and seldom uninspiring, Arthur Dodge &amp; the Horsefeathers prove that they are here to stay.&rdquo;'
		},
	
		{
			src : 'CMJ',
			text : 'Arthur Dodge can rock with a sincerity akin to Neil Young and early Springsteen, pluck through a Wilco-style ballad of hopeless love, and slip in lyrics with a Johnny Cash sense of homespun, humorous despondency.&rdquo;'
		},
	
		{
			src : 'No Depression',
			text : 'For better or worse, the line &lsquo;I just spent all of my wife&rsquo;s money on some bourbon and a rock &rsquo;n&rsquo; roll show&rsquo; from &lsquo;She&rsquo;s So Kind&rsquo; represents a fairly common sentiment in country and country-rock music. However, this couplets happy ending &lsquo;But she&rsquo;s so kind, she sees it in my eyes&rsquo; rejoinder, along with crackling good roots-rock surge that gives it a backbone, are just two of the pleasant surprises on the fine debut of this Lawrence, Kansas band.&rdquo;'
		},
	
		{
			src : 'Pitch Weekly',
			text : 'Through the subtle stylistic variations, one thing remains clear: Dodge&rsquo;s trademark voice, colored by years of drowning Lucky Strikes with Budweiser, lends a certain legitimacy to virtually any subject. On some of the more intense rockers this translates into a passion typically reserved for those who have lived this Southern thug life. However on the ballads, though there is some experience with the subjects, there is a certain detached sincerity that allows the listener to persevere in the emotional stupor without losing respect for the messenger.&rdquo;'
		},
	
		{
			src : 'Mass Magazine',
			text : 'Arthur&rsquo;s music is symphonic troubled country-inspired rock &rsquo;n&rsquo; roll that would make ol&rsquo; Waylon Jennings proud; part Westerberg, part Elvis, part Mr. Cash, with the likes of Springsteen, Neil Young and the Kinks thrown in for good measure. His songs are clever laments derived mostly from life/love experiences of himself, close friends and anyone he happens to encounter throughout his daily tasks. Arthur&rsquo;s heart is embroidered on his sleeve. His honesty with himself, musically and personally, is apparent on first listen. Watching him pluck away on his acoustic six-string, it&rsquo;s made obvious that this guy is fearlessly baring himself to you, and perhaps, making some self-realizations along the way, inviting you to do the same.&rdquo;',
			attr : 'Chris Tolle'
		},
	
		{
			src : 'www.lawrence.com',
			link : 'www.lawrence.com/'
		},
	
		{
			src : 'kjhk.rockkansas.com',
			link : 'kjhk.rockkansas.com/arthurdodge/'
		}
	) ;

loadContent = function()
{
	var subnav = new Array() ;

	for( var i = 0; i < content.length; i++ )
	{
		var item = '<div><span id="p' + i + '" onmouseover="getContent( ' + i + ' ) ;"' ;

		if( content[ i ].link )
			item += ' onclick="window.open( \'http://' + content[ i ].link + '\' ) ;" onmouseout="this.style.textDecoration=\'none\' ;"' ;

		item += '><img id="img' + i + '" src="/images/spacer.gif" alt="" width="11" height="11" border="0" class="square"\/>' + content[ i ].src + '<\/span><\/div>' ;

		subnav.push( item ) ;
	}

	var openQuote = document.createElement( 'div' ) ;
	openQuote.setAttribute( 'id', 'openquote' ) ;
	openQuote.appendChild( document.createTextNode( '\u201C' ) ) ;
	document.getElementById( 'body' ).insertBefore( openQuote, document.getElementById( 'content' ) ) ;

	document.getElementById( 'subnav' ).innerHTML = subnav.join( '' ) ;
	document.getElementById( 'img0' ).src = '/images/square006o.gif' ;
	var html = getText( content[ 0 ] ) ;
	document.getElementById( 'content' ).style.minHeight = '304px' ;
	document.getElementById( 'content' ).innerHTML = html ;
}

getContent = function( id )
{
	for( var i = 0; i < content.length; i++ )
		document.getElementById( 'img' + i ).src = '/images/' + ( ( i == id ) ? 'square006o.gif' : 'spacer.gif' ) ;

	if( content[ id ].link )
		document.getElementById( 'p' + id ).style.textDecoration = 'underline' ;

	var html = getText( content[ id ] ) ;
	document.getElementById( 'content' ).innerHTML = html ;
}

function getText( quote )
{
	var html = quote.text ;
	document.getElementById( 'openquote' ).style.display = 'block' ;

	if( quote.text == undefined )
	{
		html = '' ;
		document.getElementById( 'openquote' ).style.display = 'none' ;
	}

	if( quote.attr )
		html += '<div class="attr">&mdash; ' + quote.attr + '<\/div>';

	return html ;
}

window.onload = function() { loadContent() ; }

