$(document).ready(function() {
 
	/* More/Less links on the Team page */
	$('div.member a.toggle').click(function(ev) { 
		$(this).parent().find('.extra-content').slideToggle('fast'); 
		$(this).text(($(this).text() == 'More') ? 'Less' : 'More');
		
		if ($(this).text() == 'Less') {
			$(this).parent().parent().find('.portrait img').animate({ width: 100 });
		}
		if ($(this).text() == 'More') {
			$(this).parent().parent().find('.portrait img').animate({ width: 60 });
		}
		
		
		return false;
	})
	
	/* Overlay effect for the CLients page*/
	$(function() { $("a[rel]").overlay({mask: '#000'}); });
	
	/* Slider on the home page */
	$('#slider').nivoSlider({
        effect:'random',
        directionNav:false,
        directionNavHide:true,
        controlNav:false
    });

});






