$(document).ready(function() {

	$('#portfolio img').fadeTo("fast", 0);

	$('#portfolio img').hover(
		function() { $(this).fadeTo("fast", 1); },
		function() { $(this).fadeTo("fast", 0); }
	);

	// cycle

    $('#portfolio').cycle({
		fx: 'fade',
		timeout: 0, 
		next:   '#next', 
		prev:   '#prev' 
	});	
	
	
	// fancybox
	
	$("a.zoom").fancybox({
		'titleShow'		: false,
		'titlePosition' : 'inside',
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic'		
	});	
	
	// tipsy
	
	$('.info').tipsy({fade: true, html: true});

	// tweet
	
	$(".tweet").tweet({
		username: "madebyahrens",
		count: 3,
		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",
		loading_text: "Lade Tweets..."
	});	
	
	
});