$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto();
	$('#toggled').hide();
	$('#toggle').click(function () {
  		$('#toggled').toggle("slow;");
	});
});

function expand(){
$('#toggled').toggle();
$('#toggle').toggle();
}
