function changecontent(content)
{
	new Ajax.Updater('content', 'inc/content.php?content=' + content, {
		method: 'post'});
	if ( risen != '1' )
	 {
		$('browser').morph('top: 33px; height: 430px;'); return false;
		var risen = '1';
	 }
	else new Effect.toggle('browser','slide'); return false;
	
}

function closecontent()
{
	new Ajax.Updater('content', 'inc/content.php?content=empty', {
	 	method: 'post'});
	$('browser').morph('top: 465px; height: 0px;'); return false;
	var risen = '0';
}

function buildipod() {
	alert(risen);
}

/*
function changecontent(content) {
	var contentstring = 'inc/content.php?content=' +content;
	$('browser').morph('top: 464px; height: 0px;'); return false;
	setTimeout("new Ajax.Updater('content','"+contentstring+"',{onComplete:function(){ new Effect.Morph('browser', {style: 'height:430px'}) },asynchronous:true, evalScripts:true});",1000);
}*/

