$(document).ready(function() {
	$('a.popup').each(function(i) {
		$(this).attr("rel","shadowbox;width=970;height=620;title= ");
	});
	$('a').each(function(i) {
		$(this).focus(function() {
			this.blur();
		});
	});
	// define toolip mechanism:
	$('.halftext a.popup').each(function(i) {
		$(this).easyTooltip({
			useElement: 'tooltip_' + $(this).attr("id"),
			xOffset: 10,
			yOffset: -15,
			clickRemove: true
		});
	});
});
