$(function() {

	$("#top_banner").cycle({
		fx: 'fade',
		speed: 1000,
		timeout: 8000,
		pause: 1
	});

	$("#bible_verses .inner").cycle({
		fx: 'fade',
		speed: 1000,
		timeout: 10000,
		pause: 1
	});

	$(".tooltip").each(function() {

		var ele = $(this);
		var text = null;

		switch (ele.attr("tagName")) {
			case 'IMG': 
				text = ele.attr("alt");
				ele.removeAttr("alt");
				break;

			default:
				text = ele.attr("title");
				ele.removeAttr("title");
				break;
		}

		ele.qtip({
			content: text,
			position: {
				corner: {target: 'topLeft', tooltip: 'bottomRight'},
				adjust: {screen: true}
			},
			style: {
				border: {width: 3, radius: 3},
				padding: 7,
				textAlign: 'left',
				tip: true
			}
		});

	});

	$("a[href=#]").attr("title", "En construcción")
	.attr("href", BASE_URL+"en-construccion.html");

});
