var last_selected = 1;

function home(){
	hide('back');
	if (last_selected) { hide('info_'+last_selected); hide('photo_'+last_selected); }
	show('info_1');
	show('about_nav');
	last_selected=1;
}

function mousedown(sku){
	_mousedownSection(sku,'button');
}

function _mousedownSection(sku,class_name){
	hide('about_nav');
	show('back');
	if (last_selected && last_selected!=sku) { hide('info_'+last_selected); hide('photo_'+last_selected); }
	show('info_'+sku);
	show('photo_'+sku);
	last_selected = sku;
	
	/*
	var ajax=new Ajax();
	ajax.onDone = function(ajaxObj, responseText){
		alert(responseText)
	}
	ajax.onFail=function(ajaxObj){}
	ajax.get('../php/test.php');
	*/
	
}
