var currentCategory = false;

function showCategories(category){
	if (category == currentCategory) return;
	
	if (currentCategory) {
		$('.products .'+currentCategory+' .categories').animate({
			height:0,
			paddingBottom:15,
			bottom:40,
			opacity:0
		},400,"easeInBack",function(){});
	}
	
	currentCategory = category;
	
	$('.products .'+category+' .categories').show().css({
		height:0,
		paddingBottom:15,
		bottom:40,
		opacity:0
	}).animate({
		height:$('.products .'+category+' .categories .wrap').innerHeight(),
		paddingBottom:80,
		bottom:15,
		opacity:1
	},400,"easeOutBack");
}
