$(document).ready(function() {
	$("a[rel=external]").click(function() {
		window.open($(this).attr('href'));
		return false;
	});
	
	$("#banner").cycle({
		fx: 'fade',
		timeout: 20000
	});
	
	$("a[rel=colorbox]").colorbox();
});
