$(function() {
    /*** Twitter **/
    $.getJSON(
    	'http://search.twitter.com/search.json?callback=?&rpp=1&q=from:' + siteName,
    	function(data) {
			$('#twitter ul').append('<li class="left margin-r10"><a title="Follow me on twitter" href="http://www.twitter.com/'+siteName+'" target="_blank"><img alt="twitter" src="' + data.results[0].profile_image_url + '"></a></li>');
    		$.each(data, function(i, tweets) {
				for(var num = 0; num < tweets.length; num++) {
					if(tweets[num].text !== undefined) {
						$('#twitter ul').append('<li class="right">' + tweets[num].text + '</li>');
					}
				}
    		});
			$('#twitter').hide();
			$('#twitter').fadeIn('slow');
    	}
    );
	
	/*** Slides ***/
	if ($frontpage) {
		$("#showcase").animate({top: 0}, 1000);
		
		$(".next_slide").click(function () {
			var $current_slide = $(this).attr('rel');
			if ($current_slide == $('.project').length) {
				var $new_x = -10;
			} else {
				var $new_x = - $current_slide * 1020;
			}
			$("#showcase").animate({
				left: $new_x
			}, 600);
			return false;
		});
	}
	
	$('.fade').hover(function(){
		$(this).fadeTo("fast", 0.6);
    },
	function(){
		$(this).fadeTo("fast", 1);
    });
	
});
