function toggleList(idList, idListHeader, filter)
{
	
	if($(idList).style.display == 'none')
 	{
 	 	$(idList).style.display = 'block';
		
 	 	idListHeader.className = 'klappLinkWithList';
 	 	vScroll(null ,filter);
 	 	
 	}
 	else
 	{
	
 	 	$(idList).style.display = 'none';
		
 	 	idListHeader.className = 'klappLink';
 	}
}



function show_all_brands(){
	//Effect.toggle('all_brands', 'slide');
	$('all_brands').toggle();
	$('show_all_brands').toggleClassName('active');
}

