$(document).ready(function () {
	var div="#boxindex";
	var v=$(div).height()+60;
	var vt=400;
	var speed=400;
	$(div).height(400);

// Expand Panel
	$("#boxtoggle a#open").click(function(){
		$(div).animate({height: v}, speed);
	
	});	
	
	// Collapse Panel
	$("#boxtoggle a#close").click(function(){
		$(div).animate({height: vt}, speed);	
	});		
	
	// Switch buttons 
	$("#boxtoggle a").click(function () {
		$("#boxtoggle a").toggle();
	});
});
