$(function(){
	$('a#open').click(function(){
		$('div#itemsList').animate({'height':'320px'},300);
		
	});
	$('a#close').click(function(){
		$('div#itemsList').animate({'height':'0px'},300);
		return false;
	});
});