$(function(){
	// cycle images
	var imgs = $("#imagecycle #images").children();
	if (imgs.length > 1){
		$("#imagecycle #images").cycle({ 
			fx:      'fade', 
			speed:    1000, 
			timeout:  3000 
		});
	}
	// rel externals into new windows
	$("a[rel=external]").each(function(){
		$(this).attr("target","_blank");
	});
});