/**
 * Do some domready operations
 */
window.addEvent('domready', function(){
	/** set the tool tips */
	$$('.tip').each(function(el){
		el.store('tip:text', el.getElement('.tip-text').get('html'));
	});
	new Tips($$('.tip'), {maxTitleChars:100});
});

/**
 * Show the ad
 */
function showAd()
{
	window.open('/NissanAd.jpg', 'NissanAd', 'width=820,height=750,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes,toolbar=yes');
}