function showCategories(type) {
	
	if(type == 'rent') {
		
		$("#sellCategoriesList").slideUp(300);
		$("#rentCategoriesList").slideDown(300);
		
		
	} else if(type == 'sell') {
		
		$("#rentCategoriesList").slideUp(300);
		$("#sellCategoriesList").slideDown(300);
		 
	}
	
}
