$(document).ready(function(){
	// Blinking Fields
	$('.blink').
	    focus(function() {if(this.title==this.value) {this.value = '';}}).
	    blur(function(){if(this.value=='') {this.value = this.title;}});
	    
      $(".rollover").hover(
         function(){this.src = this.src.replace("_off","_on");},
         function(){this.src = this.src.replace("_on","_off");});	    
	    
	//Fader
	var fader;
	$('#fader .item').simpleFade({
		duration: 3000,
		speed: 500,
		effect: "puff",
		init : function () {
			fader = this;
		},
		onFade : function (index) {
			$('#fader .nav a').removeClass('active').eq(index).addClass('active');
		}
	});
	
	$('#fader .nav a').click(function () {
		fader.fadeTo($('#fader .nav a').index(this));
		return false;
	});
	
	// Tabbed Content
	$('#tabs a').click(function(){
		$('#tabs a').removeClass('active');
		$(this).addClass('active');
		
		var url = $(this).attr('href');
		$('#tabbed-content .tab').hide();
		$(url).fadeIn();
		
		return false;
	});
	
	// Tweets
	$('.tweets').tweet({
        join_text: "auto",
        username: "seaofclouds",
        avatar_size: 0,
        auto_join_text_default: "we said,",
        auto_join_text_ed: "we",
        auto_join_text_ing: "we were",
        auto_join_text_reply: "we replied",
        auto_join_text_url: "we were checking out",
        count: 2,
        loading_text: "loading tweets..."
      });
});
