$(function(r){
	$("#cat_toggle").click(function(c){
		var btn = $(this);
		$("#categories").slideToggle('fast', function(){
			if($(this).is(':visible')){
				btn.html('Hide Categories');
			} else {
				btn.html('Show All Categories');
			}
		});
		return false;
	});

	$("#filter").change(function(c){
		var val = $(this).val();
		$(".product:not(.filter_"+val+")").hide();
		$(".product.filter_"+val).show();
		if($(".product:visible").length <= 0){
			var text = 'There are no new products in this category';
			if($("#products #no_products").length <= 0){
				$("#products").prepend('<p id="no_products">'+text+'</p>');
			}
			$("#no_products").show();
		} else {
			$("#no_products").hide();
		}
		$.ajax({
			type:'post',
			url:'/ajax/whats-new/filter/',
			data: 'filter='+val
		});
	});
});


function confirmation() {
	alert("NOTE: All online purchase selections, purchase payments, order tracking, merchandise returns or any other customer service issues will be processed by this vendor.");
	return true;
}
