$(document).ready(function(){
	$('#navbar a:last').css('border', 'none');
	
	$('#portfolio').innerfade({
		speed: 2000,
		timeout: 4000,
		type: 'sequence',
		containerheight: '480px'
	});
	
	

 	$('.showDescription').toggle(function(){
		$(this).next().show(1000);
		$(this).css('font-weight', 'bold');
	},function(){
		$(this).next().hide('slow');
		$(this).css('font-weight', 'normal');
	});
});

