$(document).ready(
	function () {
		$('.portfolio_menu').hide();
		$('#people_menu ul.active').show();
		$('#people_menu a.first').mouseover(
			function () {
				//alert($(this).attr("class"));
				var id = $(this).attr('id');
				$('.portfolio_menu').hide();
				$('#portfolio_menu-'+id).show();
			}
		);
		$("#thumbs a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_rounded'}); 
	}
);

function changePicture(src) {
	$("#big_image img").attr('src', src);
	return false;
}
