$(document).ready(function(){

	$("a[rel='example1']").colorbox();
	$("a[rel='image1']").colorbox();
	$(".content1").colorbox();
	
	// safer mailto link
	$('a[href*="[at]"][href*="[dot]"]').each(function() {
		var email = $(this).attr('href').split('[at]').join('@').split('[dot]').join('.');
		$(this).attr('href', 'mailto:' + email.toLowerCase());
		if ($(this).text().length == 0) $(this).text(email);
	});
	
});
