window.addEvent('domready', function(){

	$$('div.projectText').addEvents({
		'click' : function( goto ){
     		new Event(goto).stop( );
     		link = this.getElement('a');
     	 	window.location = link;
     	 },
     	 'mouseover' : function( ) {
     	 	this.setStyle("cursor", "pointer" );
     	 }
    });
	
	$$('span.peopleItem').addEvents({
		'click' : function( goto ){
     		new Event(goto).stop( );
     		link = this.getElement('a');
     	 	window.location = link;
     	 },
     	 'mouseover' : function( ) {
     	 	this.setStyle("cursor", "pointer" );
     	 }
    });
			
	
}); 