/*function init() {
	$$('.navlink[rel]').invoke('observe', 'click', function(event) {
		event.stop();
		if (this.rel && $(this.rel)) $(this.rel).scrollTo();	
	});
	
	// feature tips
	$('intro').select('.tipped[title]').each(function(element) {
	  var title = element.getAttribute('title');
	  var wrap = new Element('div').update(title);
	  wrap.insert({ top: new Element('p').update(element.down('span').innerHTML.replace(':', '')) });
								   
	  new Tip(element, wrap, { className: 'featureTip', target: 'featuresImage', hook: { target: 'topRight', tip: 'topRight' }, effect: 'appear', delay: 0.2, hideAfter: 0.8, hideOn: false, duration: 0.3, viewport: false });
	  element.title = '';
    });
	
	
	Projects.createIdeas('lightview');
}

document.observe('dom:loaded', init);*/
