Collareco.Home = {
	init: function(){
		$('.viajes > div > span').click(function(){
			var _this = $(this);
			var title = _this.find('>span').text();
			var href = _this.find('>div>div');
			var innerWidth = 400;
			//if(title.width() > 400)innerWidth = title.width() + 60;
			$.colorbox({
				inline: true,
				title: title.replace(/ /g, '&nbsp;'),
				href: href,
				innerWidth: innerWidth
			});
		});
	}
};

$(function(){
	Collareco.Home.init();
});
