<!--
//<![CDATA[

var openphotoHeight = 435;
var closedphotoHeight = 174;

$(document).ready(function() {
	
	$("#contactphoto").height(closedphotoHeight);
	
	$("#additionalinfo_title").click(function() {		
		
		if ($(".additional").is(":visible")) {
			
			$(".additional").fadeOut("fast", function() { 
				$("#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() {
				$(".additional").fadeIn();
				$("#additionalinfo_title p").html("Close additional info").css("background-image", "url('/gfx/icon_headeron.gif')");
			});
			
		} 
	});

});

//]]>
-->	