function refreshContent($p,$cat,$search) {
    $("#content").fadeOut("slow", function(){
        $("#content").load("Pages/products.php?p="+$p+"&cat="+$cat+"&Search="+$search,false, function() {
            $("#content").fadeIn("slow");
        });
    })
    return false;
}

function refreshContentCat($p,$cat) {
    $("#content").fadeOut("slow", function(){
        $("#content").load("../Pages/products.php?p="+$p+"&cat="+$cat,false, function() {
            $("#content").fadeIn("slow");
        });
    })
    return false;
}