jQuery().ready(function(){   	
	jQuery(".staffItem:last").css({
		'margin-bottom'			: 0
	}); 
	jQuery(".skills:odd").addClass("odd"); 

	jQuery('.show, .hide').hover(
		function () {
			jQuery(this).css({'background-color' : '#f9f9f9'});
		}, 
		function () {
			jQuery(this).css({'background-color' : '#efefef'});
		}
	);
	
	jQuery('.hide').click(
		function () {
			var index = jQuery('.hide').index(this);
			jQuery(".staffItem:eq("+index+")").removeClass('open');
			jQuery(".staffInfo:eq("+index+")").slideToggle('slow');
		}
	);
	jQuery('.show').click(
		function () {
			var index = jQuery('.show').index(this);
			jQuery(".staffItem:eq("+index+")").addClass('open');
			jQuery(".staffInfo:eq("+index+")").slideToggle('slow');
		}
	);
		
});
