$(function() {
	$('area').hover(function() {
		$('#galaxy').addClass($(this).attr('id'));
		$('#galaxy').stop().css({opacity: 0}).animate({opacity: 1});
		$('#intro li').hide();
		$('#intro .'+$(this).attr('id')).show();
	}, function() {
		$('#intro li').hide();
		$('#intro .home').show();
		$('#galaxy').removeClass();
	});

	$('.tweet_list li').css({opacity: 0});


	$('input[type=text]').one('focus', function(){
		$(this).attr('value', '');
	});
	$('.tweet_list').cycle({
		fx: 'fade',
		speed:  1000,
		timeout: 5000
	});

	$('#left-nav ul a').each(function() {
		if ($(this).height() > 18) {
			$(this).addClass('twinline');
		}
	})

	var activeLink = '';
	$('#left-nav ul a').hover(function() {
		activeLink = $(this).parents('ul').find('.active');
		$(this).parents('ul').find('li').removeClass('active');
	}, function() {
		activeLink.addClass('active');
	});

	$.fn.preload = function() {
		this.each(function(){
			$('<img/>')[0].src = this;
		});
	}

});

