<!--
//<![CDATA[

var openphotoHeight = 435;
var closedphotoHeight = 174;

$(document).ready(function() {
						   
	$("#contactphoto").height(closedphotoHeight);
	
	$("#additionalinfo_title").click(function() {		
		
		
		//if ($(".additional").is(":visible")) {
		if(	$("#contactphoto").height()==openphotoHeight) {		
				$("tr.additional").hide();
					$("#contactphoto").animate({"height" : closedphotoHeight}, 200);
					$("#additionalinfo_title p").html("Open additional info").css("background-image", "url('/gfx/icon_headeroff.gif')");
					
						
		} else {		
				
				
				$("#contactphoto").animate({"height" : openphotoHeight}, 200, "linear", function() {
					$("tr.additional").show();
					$("#additionalinfo_title p").html("Close additional info").css("background-image", "url('/gfx/icon_headeron.gif')");
				});
			
		} 
	});

});

//]]>
-->	