var guide = {
	
	
	makeComments: function(){
		
				var as = [];

	$S('a.oldd').each(function(a){
		if (a.getAttribute('title')) as.push(a);
	});

	$S('img.cubicle').each(function(a){
		as.push(a);
	});
	
	new Tips(as, {maxOpacity: 0.9, maxTitleChars: 35});
	},

					  
	init: function(){
		this.makeComments();
		
	
	}
};
window.onDomReady(guide.init.bind(guide));


