$(document).ready(function() {
	$('.content').hide();
	$('#home').show();	 
	$('body').delegate('.page_item a','click',function(){
		var showcontent = $(this).attr("title");
		if (showcontent == 'twitter'){
			$(".tweet").html('');
			$(".tweet").tweet({
				avatar_size: 32,
				count: 4,
				query: "from:bechrissed",
				loading_text: "searching twitter..."
			});	
		}				
		$('.content').hide();
		$('#'+showcontent).show();
		$('#mainNav ul li').removeClass('current_page_item');
		$(this).parent().addClass('current_page_item');	
	})
	$('.fb').fancybox({
		'opacity'		: true,
		'overlayShow'	: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'none'
	})
})


