/* Tigra Menu items structure */
var MENU_ITEMS = [
	[wi('home'), 'index.html', {'tt':'Back to our home page'}
	],
	[wi('pricing'), 'pricing.html', {'tt':'see a pricing guide for our homes'},
			[wi('price'), 'price.html', {'tt':'our price list'}],
			[wi('afford'), 'afford.html', {'tt':'our homes are affordable'}]
	],
	[wi('fp'), 'fp.html', {'tt':'review our floor plans'},
			[wi('over'), 'over.html', {'tt':'larger homes with strength and spaciousness'}],
			[wi('under'), 'under.html', {'tt':'strength and affordability in smaller homes'}]
	],
	[wi('feature'), 'features.html', {'tt':'Wonderful standard features and lots of amazing options'},
			[wi('std'), 'standard.html', {'tt':'Excellent standard features'}],
			[wi('opt'), 'options.html', {'tt':'Upgrade with beautiful and practical options'}]
			],
	[wi('ins'), 'ins.html', {'tt':'Insurance savings of more than 50%'}],
	[wi('help'), 'help.html', {'tt':'Resources for on-going Katrina recovery and ways you can help!'},
			[wi('financial'), 'financial.html', {'tt':'See tools for obtaining financing'}],
			[wi('resources'), 'help.html', {'tt':'Connect with sources of help for homeowners recovering from disaster'}]
			],
	[wi('why'), 'why.html', {'tt':'What are Insulated Concrete Forms? What about utilities & maintenance?'},
			[wi('strength'), 'strong.html', {'tt':'Why are Insulated Concrete Forms so strong?'}],
			[wi('qual'), 'quality.html', {'tt':'UTR quality produces safe and affordable homes'}],
			[wi('maint'), 'maint.html', {'tt':'With our green homes, maintenance costs are significantly reduced'}],
			[wi('utility'), 'utility.html', {'tt':'Superb construction methods lowers on-going utility cost'}]
			],
	[wi('start'), 'start.html', {'tt':'See how you can get started'}],
	[wi('faqs'), 'faqs.html', {'tt':'Frequently Asked Questions'}],
	[wi('contact'), 'contacts.html', {'tt':'Get in touch with us'}
		],	
];

function wi (s_img) {
	return [
		'<img src="img/' + s_img + '.gif" border="0">',
		'<img src="img/' + s_img + '_ro.gif" border="0">',
		'<img src="img/' + s_img + '_ro.gif" border="0">'
	];
}