$(document).ready(function(){
	
	$('#items p').fadeTo(0, 0.05).css('top', '20px');
	
	$('#items a').hover(
		function() {
			$(this).siblings('p').stop().fadeTo(200, 0.10);
		},
		function() {
			$(this).siblings('p').stop().fadeTo(100, 0.05);
		}
	);
	
	$('#contact_me').toggle(
		function(event) {
			event.preventDefault();
			$('#contact_wrap').animate({
				height:	'200px'
			}, 300);
		},
		function(event) {
			event.preventDefault();
			$('#contact_wrap').animate({
				height:	'0px'
			}, 300);
		}
	);
	
});