$(document).ready(function(){
	//open links with "rel=external" in a new window
	$('a[rel*="external"]').click(function(e){
		e.preventDefault();
		window.open(this.href);
	});
	
	// open links with facebox
	$('a[rel*=facebox]').facebox()

// ---------------------------------------
	
	var end = new Date('June 25, 2011 07:25:00');
	$('#countdown').countdown({until: end, layout: '<small>{dn} {dl}, {hnn}{sep}{mnn}{sep}{snn} bis "Schulte goes Intercontinental"</small>'});
});