| Related sites for http://www.austinsnaturalpet.com/ |
| Castor_and_Pollux_Pet_Works Offers dog and cat food, collars, leashes, chew toys, vitamins, kitty litter, catnip, shampoo and stain remover. | | Catflaps_com Sells name brand doors and replacement flaps. Other products include vehicle harnesses, kennels, feeders, and accessories. | | Cats_and_Canines Wicker baskets and beds, conventional bedding, toys, collars and leads, and travel accessories. | | Cats,_Dogs_and_Monkey_Tails Selling boutique items to include beaded collars, bedding, carriers, assessories, and gift baskets. | | Classy_Pets_Boutique Offerings include personalized collars, travel items, jewelry, toys, and furniture. | | Cold_Noses Washable and reversible neckware in a variety of prints and designs. Also, toys and food. | | Collar_That_Name Offers custom-embroidered collars and bandanas, as well as breed-themed jackets, sweatshirts, and blankets. | | Cooper_Cadie Featuring natural organic pet foods, and provides selection products such as treats and toys, clothes, collars and leashes, and jewelry. | | A_Creature_Comfort Featuring raised feeders, natural treats, games, and accessories. | | Crystal_Clear_Pet_Products Provides toys, assorted bedding styles, grooming items, and feeding accessories. | | Custom_Pet_Cozies Offering custom-made dog and cat beds, toys, and accessories. | | Dapper_Pets Selling rain gear, life vests, carriers and crates, and pet strollers. | | DeeAnn\'s_Treasures Offers beds and coats from small to x-large and monogrammed seasonal bandanas. | | Dilligad Offering food, grooming accessories and natural health products. | | Discount_Pet_Superstore Offerings include bedding, feeders, containment options, grooming and health products, litter boxes, and electronic devices. | | DJ_Pets Selling sofas, chairs, collars and leashes, fashions, totes, and jewelry for animals and people. | | DoctorDog_com Supplies including collars, leashes, treats, care supplies, and pet information. | | Dog_Gone_Clean Sells toys, treats, beds, collars, bowls, grooming supplies, and gifts. | | Dog_Locker Selling cages, grooming products, toys, beds and training items for dogs and cats. | | DogCatSupply Offers treats, toys and accessories. | | Dogmatic_Products Supplies leashes, treats and toys, as well as jackets for owners. Shop from European or American store. | | Dognests Selling bean bag bedding, cover bags for transporting wet animals, tunnels, and coats. Retail price list available. Contact owner for additional information. UK location. | | Down_East_Products Offers ergonomic no-hands leashes for walking one or two dogs, toys, beds, catnip items, gifts and accessories. | | Feline_Fantasies Variety of products for cats and small dogs including beds, clothes, litter boxes, and jewellery. Includes testimonials, company profile and photos. | | Felix_and_Fido Sells clothing and accessories pets and a line of themed household items and wearables for people. | | Finicky_Felines_and_Pampered_Pooches Offering Kittywalk and Puppywalk products that allows pets to roam safely outdoors. Also litter screens and strollers. | | For_The_Love_of_Pete Accessories including feeding, grooming, beds, apparel and toys from their boutique located in Richmond, Virginia. | | Fox_and_Hounds Offering decorated collars and leads as well as carriers, bandanas, beds, headgear and novelty wear. | | George Sells collars, toys, treats, beds, bowls and related items. | | Gone_to_the_Dogs_Superbarn Grooming tools, bath products, kennels, accessories, and health products. | | Good_Dog_Pet_Express Offers treats, gift baskets, grooming supplies, toys, leashes and collars. Also recipes and cookie cutters. | | GoTags Provides halter plates, small size tags for puppies and kittens, collars and leads. Stainless steel or 22K gold plating. Also black marble photo memorial markers. | | Groovypets Features collars, leads, dog coats, pet beds, tags and food bowls. Located in UK. | | HandsnPaws Sells assorted products for canines, felines and their owners, including travel gear, backpacks, outerwear, carriers, car barriers and portable tents. | | Happy_Tails_PetMart Supplying treats, toys, supplements, beds, carriers and health products for cats and dogs. | | Healdsburg_Dog_House Providing collars and leads, beds and carriers, cubbies and perches, as well as canine-themed gifts. | | Healthy_Pooch Supplies food, supplements, treats, toys, gifts and health products. | | Heart_of_my_Heart_Pet_Boutique Gift baskets, luxury beds, designer collars and tags, and bowls. | | Here_Kitty_Kitty Offering include clothes, coats, collars, carriers, identity tags and jewelry. | | House_Pet_Supply Offers collars, feeding accessories, as well as treats and toys. Also puppy information and health resource links. |
|
Austin's Friendly Neighborhood Pet Store
// remote scripting library
// (c) copyright 2005 modernmethod, inc
var sajax_debug_mode = false;
var sajax_request_type = "POST";
var sajax_target_id = "";
var sajax_failure_redirect = "";
function sajax_debug(text) {
if (sajax_debug_mode)
alert(text);
}
function sajax_init_object() {
sajax_debug("sajax_init_object() called..")
var A;
var msxmlhttp = new Array(
'Msxml2.XMLHTTP.5.0',
'Msxml2.XMLHTTP.4.0',
'Msxml2.XMLHTTP.3.0',
'Msxml2.XMLHTTP',
'Microsoft.XMLHTTP');
for (var i = 0; i < msxmlhttp.length; i++) {
try {
A = new ActiveXObject(msxmlhttp[i]);
} catch (e) {
A = null;
}
}
if(!A && typeof XMLHttpRequest != "undefined")
A = new XMLHttpRequest();
if (!A)
sajax_debug("Could not create connection object.");
return A;
}
var sajax_requests = new Array();
function sajax_cancel() {
for (var i = 0; i < sajax_requests.length; i++)
sajax_requests[i].abort();
}
function sajax_do_call(func_name, args) {
var i, x, n;
var uri;
var post_data;
var target_id;
sajax_debug("in sajax_do_call().." + sajax_request_type + "/" + sajax_target_id);
target_id = sajax_target_id;
if (typeof(sajax_request_type) == "undefined" || sajax_request_type == "")
sajax_request_type = "GET";
uri = "/?";
if (sajax_request_type == "GET") {
if (uri.indexOf("?") == -1)
uri += "?rs=" + escape(func_name);
else
uri += "&rs=" + escape(func_name);
uri += "&rst=" + escape(sajax_target_id);
uri += "&rsrnd=" + new Date().getTime();
for (i = 0; i < args.length-1; i++)
uri += "&rsargs[]=" + escape(args[i]);
post_data = null;
}
else if (sajax_request_type == "POST") {
post_data = "rs=" + escape(func_name);
post_data += "&rst=" + escape(sajax_target_id);
post_data += "&rsrnd=" + new Date().getTime();
for (i = 0; i < args.length-1; i++)
post_data = post_data + "&rsargs[]=" + escape(args[i]);
}
else {
alert("Illegal request type: " + sajax_request_type);
}
x = sajax_init_object();
if (x == null) {
if (sajax_failure_redirect != "") {
location.href = sajax_failure_redirect;
return false;
} else {
sajax_debug("NULL sajax object for user agent:\n" + navigator.userAgent);
return false;
}
} else {
x.open(sajax_request_type, uri, true);
// window.open(uri);
sajax_requests[sajax_requests.length] = x;
if (sajax_request_type == "POST") {
x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1");
x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
}
x.onreadystatechange = function() {
if (x.readyState != 4)
return;
sajax_debug("received " + x.responseText);
var status;
var data;
var txt = x.responseText.replace(/^\s*|\s*$/g,"");
status = txt.charAt(0);
data = txt.substring(2);
if (status == "") {
// let's just assume this is a pre-response bailout and let it slide for now
} else if (status == "-")
alert("Error: " + data);
else {
if (target_id != "")
document.getElementById(target_id).innerHTML = eval(data);
else {
try {
var callback;
var extra_data = false;
if (typeof args[args.length-1] == "object") {
callback = args[args.length-1].callback;
extra_data = args[args.length-1].extra_data;
} else {
callback = args[args.length-1];
}
callback(eval(data), extra_data);
} catch (e) {
sajax_debug("Caught error " + e + ": Could not eval " + data );
}
}
}
}
}
sajax_debug(func_name + " uri = " + uri + "/post = " + post_data);
x.send(post_data);
sajax_debug(func_name + " waiting..");
delete x;
return true;
}
// wrapper for get_discount
function x_get_discount() {
sajax_do_call("get_discount",
x_get_discount.arguments);
}
Home
Links/Events
News
Services
Gallery
Wellness Tips
Resources
Contact
var fo = new FlashObject("http://www.justforpetsaustin.com/header2.swf", "movie", "780", "150", "5", "#EDB52E");
fo.write("flashcontent");
fo.addVariable("variable", "varvalue");
Product Catalog
Catalog Home
New Products
Cats
Clean Up Stuff
Dinnerware
Dog Foods
Gift Cards
Gifts
Grooming & Hygiene
Holistic Health Aides
Outdoor Activities
Pooch Gear
Pooch Wear
Specials
Toys
Travelling & Mobility Gear
Treats
Advanced Search
Account Options
Username:
Password:
Remember me
Forgot Password?
Get an Account
Best Sellers
ECO - 88 Pet Odor & Stain Remover 1 qt size
Meeker Raspberry Seed Powder 1 lb
Eagle Pack Holistic Select Anchovy, Sardine and Salmon Meal Cat Food - 6.6 lb
61/2" Wet Nose Natural Pressed Rawhide Bones
EAGLEPACK FISH HOLISTIX (1 lb bag)
100% Organic Cooked Chicken 12/13.2oz
EAGLEPACK LAMB & OATMEAL (Twelve 13 oz cans)
California Natural Reduced Calorie Dry Dog Food 36lb
Eagle Pack Holistic Select Duck Meal & Oatmeal Formula Dry Cat Food - 6.6 lb
Innova 5.5oz Canned Cat Food
Just For Pets
3616 Far West Blvd
Austin, TX
(512) 342-2220
Cats
Clean Up Stuff
Dinnerware
Dog Foods
Gifts
Grooming & Hygiene
Holistic Health Aides
Pooch Gear
Pooch Wear
Toys
Travelling & Mobility Gear
Treats
Home |
Austin Links & Events |
News |
Services |
Gallery |
Wellness Tips |
Resources
| Contact
Site by CM
|
|