
$( document ).ready(
	function() {
		$( 'div.profileBox p.name a' ).css(
			{
				'color' : '#111',
				'text-decoration' : 'none',
				'font-weight' : 'bold'
			}
		),
		$( 'div.profileBox p.jobTitle' ).css(
			{
				'color' : '#999'
			}
		),
		$( 'div.profileBox' ).css(
			{
				'cursor' : 'pointer'
			}
		).mouseover(
			function() {
				$( this ).css(
					{
						'border-color' : '#F30'
					}
				);
			}
		).mouseout(
			function() {
				$( this ).css(
					{
						'border-color' : '#CCC'
					}
				);
			}
		).mousedown(
			function() {
				$( this ).css(
					{
						'border-color' : '#7FB2CC'
					}
				);
			}
		).click(
			function() {
				window.location = $( this ).find( 'p.name a' ).attr( 'href' );
				return false;
			}
		);
	}
);
