jQuery(document).ready(function($){

	$('a.external').live('click', function(e){
		$(this).blur()
		window.open($(this).attr('href'));
		return false;  // prevent default action
	});
	
	$.get('/twitter.php', function(tweets) {
		$("#loader").removeClass('loading');
		$("#tweets_list").append(tweets);
	});

	// load slimbox2
	if (!/android|iphone|ipod|series60|symbian|windows ce|blackberry/i.test(navigator.userAgent)) {
		$("a[rel^='lightbox']").slimbox({/* Put custom options here */}, null, function(el) {
			return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
		});
	}

});


