$(function(){
	$('div#relatednav').fancynav({
		topOffset: 26,
		leftOffset: 35,
		prevButtonId: 'related_prev',
		nextButtonId: 'related_next'
	});
	
	$('div#projectteam a').hover(function(){
		var title = $('img',$(this)).attr('title').split(':');
		$('div#projectlid_title').html('<strong>'+title[0]+'</strong>:'+title[1]);
	},function(){
		$('div#projectlid_title').html('');
	});

	// Hide after 2 seconds and add hover
	setTimeout(function(){
		$('div#workdetailselect_mover').stop().animate({height:'316px'},150,function(){
			$('div#workdetailselect').hover(function(){
				$('div#workdetailselect_mover').stop().animate({height:'233px'},150);
				$('a#workmore').show();
			},function(){
				$('div#workdetailselect_mover').stop().animate({height:'316px'},150);
				$('a#workmore').hide();
			});
		});
	},2000);

	$('img#workmore').hover(function(){
		this.src = 'images/more_over.png';
	},function(){
		this.src = 'images/more.png';
	});
});