// JavaScript Document


window.addEvent('domready',function() {
	//this is smoothscroll extravaganza
	new SmoothScroll({ duration:500 }, window);
	
	//this little puppy is for comments in logotypes, theoretically tooltips
	var comments = new Tips($$('.comments'), {
	timeOut: 700,
	maxTitleChars: 50,
	maxOpacity: .9,
	});
	
$$('.comments').addEvent('click', function(event){
event.preventDefault();
//Will prevent the check box from being "checked".
});


});