rescue_groups 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +4 -0
  3. data/.travis.yml +3 -0
  4. data/Gemfile +3 -0
  5. data/Gemfile.lock +90 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +226 -0
  8. data/Rakefile +30 -0
  9. data/config/config.rb +26 -0
  10. data/config/initializer.rb +15 -0
  11. data/docs/animal_field.md +138 -0
  12. data/docs/event_field.md +20 -0
  13. data/docs/organization_field.md +25 -0
  14. data/fields/animal_field.rb +152 -0
  15. data/fields/event_field.rb +35 -0
  16. data/fields/organization_field.rb +40 -0
  17. data/fields/picture_field.rb +30 -0
  18. data/lib/api_client.rb +29 -0
  19. data/lib/queryable.rb +79 -0
  20. data/lib/relationable.rb +76 -0
  21. data/lib/remote_client.rb +29 -0
  22. data/lib/remote_model.rb +47 -0
  23. data/lib/requests/find.rb +29 -0
  24. data/lib/requests/invalid_client.rb +1 -0
  25. data/lib/requests/where.rb +94 -0
  26. data/lib/response.rb +48 -0
  27. data/models/animal.rb +57 -0
  28. data/models/event.rb +41 -0
  29. data/models/organization.rb +41 -0
  30. data/models/picture.rb +26 -0
  31. data/rescue_groups.gemspec +28 -0
  32. data/rescue_groups.rb +27 -0
  33. data/search/animal_search.rb +15 -0
  34. data/search/base_search.rb +72 -0
  35. data/search/event_search.rb +15 -0
  36. data/search/filter.rb +49 -0
  37. data/search/organization_search.rb +15 -0
  38. data/spec/fixtures/animal/find.json +1 -0
  39. data/spec/fixtures/animal/where.json +1 -0
  40. data/spec/fixtures/error.json +20 -0
  41. data/spec/fixtures/event/find.json +1 -0
  42. data/spec/fixtures/event/where.json +1 -0
  43. data/spec/fixtures/organization/find.json +1 -0
  44. data/spec/fixtures/organization/where.json +1 -0
  45. data/spec/fixtures/test_constants.rb +12 -0
  46. data/spec/integration/animal_spec.rb +55 -0
  47. data/spec/integration/event_spec.rb +33 -0
  48. data/spec/integration/organization_spec.rb +35 -0
  49. data/spec/lib/queryable_spec.rb +257 -0
  50. data/spec/lib/relationable_spec.rb +113 -0
  51. data/spec/lib/remote_client_spec.rb +27 -0
  52. data/spec/lib/requests/find_spec.rb +97 -0
  53. data/spec/lib/requests/where_spec.rb +267 -0
  54. data/spec/lib/response_spec.rb +99 -0
  55. data/spec/models/animal_spec.rb +131 -0
  56. data/spec/models/event_spec.rb +105 -0
  57. data/spec/models/organization_spec.rb +112 -0
  58. data/spec/models/picture_spec.rb +87 -0
  59. data/spec/search/animal_search_spec.rb +8 -0
  60. data/spec/search/event_search_spec.rb +8 -0
  61. data/spec/search/filter_spec.rb +39 -0
  62. data/spec/search/organization_search_spec.rb +8 -0
  63. data/spec/spec_helper.rb +340 -0
  64. data/spec/support/model_spec.rb +47 -0
  65. data/spec/support/searchable_spec.rb +15 -0
  66. data/support/animal_mock.rb +215 -0
  67. data/support/base_mock.rb +44 -0
  68. data/support/event_mock.rb +48 -0
  69. data/support/organization_mock.rb +53 -0
  70. data/version.rb +3 -0
  71. metadata +242 -0
data/rescue_groups.rb ADDED
@@ -0,0 +1,27 @@
1
+ module RescueGroups
2
+ # method: constantize
3
+ # purpose: given a symbol, convert it into a class name and
4
+ # return the matching constant
5
+ # param: constant - <symbol> - name of the constant
6
+ # return: constant that is defined or it raises an error
7
+ def self.constantize(constant)
8
+ klass = ''
9
+
10
+ constant.to_s.split('_').each do |piece|
11
+ klass += "#{ (piece[0].ord - 32).to_i.chr }#{ piece[1..-1] }"
12
+ end
13
+
14
+ begin
15
+ Object.const_get("RescueGroups::#{ klass }")
16
+ rescue NameError => e
17
+ # remove trailing s or es in case of has_many :animals
18
+ if klass[-2..-1] == 'es'
19
+ Object.const_get("RescueGroups::#{ klass[0..-3] }")
20
+ else
21
+ Object.const_get("RescueGroups::#{ klass[0..-2] }")
22
+ end
23
+ end
24
+ end
25
+ end
26
+
27
+ require_relative './config/initializer'
@@ -0,0 +1,15 @@
1
+ require_relative './base_search'
2
+ require_relative '../fields/animal_field'
3
+
4
+ module RescueGroups
5
+ class AnimalSearch < BaseSearch
6
+ # method: fields
7
+ # purpose: Return the the list of fields to request for this class for
8
+ # the remote call to RescueGroups
9
+ # param: none
10
+ # return: <Array[Symbol]> - All field names pertinent to this class
11
+ def self.fields
12
+ AnimalField::FIELDS
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,72 @@
1
+ require_relative './filter'
2
+
3
+ module RescueGroups
4
+ class BaseSearch
5
+ attr_accessor :start, :limit, :sort, :order,
6
+ :calc_found_rows, :fields, :filters
7
+
8
+ # method: fields
9
+ # purpose: Base definition of fields methods, all inherited classes
10
+ # for specialized search should define their own version of fields
11
+ # param: none
12
+ # return: <Exception> - raises an exception if this definition of fields is called
13
+ def self.fields
14
+ raise 'Fields called on base class'
15
+ end
16
+
17
+ # method: initialize
18
+ # purpose: Set important instance variables for any new instance of this class
19
+ # params: start <integer> - Offset to conduct the search against
20
+ # limit <integer> - Number of search results to return
21
+ # sort <Symbol> - Field to sort the results over
22
+ # order <Symbol> - Results returned in ascending or descending order
23
+ # return:
24
+ def initialize(start: 0, limit: 100, sort: nil, order: :asc)
25
+ @start = start
26
+ @limit = limit
27
+ @sort = sort
28
+ @order = order
29
+ @calc_found_rows = 'Yes'
30
+ @fields = self.class.fields.values
31
+ @filters = []
32
+ end
33
+
34
+ # method: add_filter
35
+ # purpose: Instantiate and add a new filter to the search classes array of filters
36
+ # param: name <String> - Name of the filter (in RescueGroups' mapping) to filter results on
37
+ # assertion <Symbol> - Type of equivalency to check against
38
+ # Supported values: [:equal, :notequal, :lessthan, :lessthanorequal,
39
+ # :greaterthan, :greaterthanorequal, :contains,
40
+ # :blank, :notblank]
41
+ # equals <String> - Value to run the type of equivalency check against
42
+ # return: none
43
+ def add_filter(name, assertion, equals)
44
+ @filters << Filter.new(name, assertion, equals)
45
+ end
46
+
47
+ # method: as_json
48
+ # purpose: Convert instance variables into a hash used to make the search POST
49
+ # to the RescueGroups API
50
+ # param: none
51
+ # return: <Hash> - keyed values of local variables
52
+ def as_json
53
+ {
54
+ resultStart: @start,
55
+ resultLimit: @limit,
56
+ resultSort: @sort,
57
+ resultOrder: @order,
58
+ calcFoundRows: @calc_found_rows,
59
+ filters: @filters.map(&:as_json),
60
+ fields: @fields,
61
+ }
62
+ end
63
+
64
+ # method: to_json
65
+ # purpose: JSON encode the result of as_json
66
+ # param: none
67
+ # return: <String> - JSON encoded string
68
+ def to_json
69
+ JSON(as_json)
70
+ end
71
+ end
72
+ end
@@ -0,0 +1,15 @@
1
+ require_relative './base_search'
2
+ require_relative '../fields/event_field'
3
+
4
+ module RescueGroups
5
+ class EventSearch < BaseSearch
6
+ # method: fields
7
+ # purpose: Return the the list of fields to request for this class for
8
+ # the remote call to RescueGroups
9
+ # param: none
10
+ # return: <Array[Symbol]> - All field names pertinent to this class
11
+ def self.fields
12
+ EventField::FIELDS
13
+ end
14
+ end
15
+ end
data/search/filter.rb ADDED
@@ -0,0 +1,49 @@
1
+ module RescueGroups
2
+ class Filter
3
+ class InvalidFilter < StandardError; end
4
+
5
+ attr_reader :name, :operation, :criteria
6
+
7
+ OPERATIONS = {
8
+ equal: :equal,
9
+ not_equal: :notequal,
10
+ less_than: :lessthan,
11
+ less_than_or_equal: :lessthanorequal,
12
+ greater_than: :greaterthan,
13
+ greater_than_or_equal: :greaterthanorequal,
14
+ contains: :contains,
15
+ not_contain: :notcontain,
16
+ blank: :blank,
17
+ not_blank: :notblank,
18
+ radius: :radius
19
+ }.freeze
20
+
21
+ # method: initialize
22
+ # purpose: Set important instance variables for a new Filter
23
+ # params: name <String> - Name of the filter (in RescueGroups' mapping) to filter results on
24
+ # operation <Symbol> - Type of equivalency to check against
25
+ # Supported values: [:equal, :notequal, :lessthan, :lessthanorequal,
26
+ # :greaterthan, :greaterthanorequal, :contains,
27
+ # :blank, :notblank]
28
+ # equals <String> - Value to run the type of equivalency check against
29
+ # return: none
30
+ def initialize(name, operation, criteria)
31
+ @name = name
32
+ @operation = OPERATIONS[operation] or fail InvalidFilter, 'Invalid operation given'
33
+ @criteria = criteria
34
+ end
35
+
36
+ # method: as_json
37
+ # purpose: Convert instance variables into a hash used to make the search POST
38
+ # to the RescueGroups API
39
+ # param: none
40
+ # return: <Hash> - keyed values of local variables
41
+ def as_json
42
+ {
43
+ fieldName: name,
44
+ operation: operation,
45
+ criteria: criteria
46
+ }
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,15 @@
1
+ require_relative './base_search'
2
+ require_relative '../fields/organization_field'
3
+
4
+ module RescueGroups
5
+ class OrganizationSearch < BaseSearch
6
+ # method: fields
7
+ # purpose: Return the the list of fields to request for this class for
8
+ # the remote call to RescueGroups
9
+ # param: none
10
+ # return: <Array[Symbol]> - All field names pertinent to this class
11
+ def self.fields
12
+ OrganizationField::FIELDS
13
+ end
14
+ end
15
+ end
@@ -0,0 +1 @@
1
+ {"status":"ok","messages":{"generalMessages":[],"recordMessages":[]},"data":[{"animalID":"1001923","animalOrgID":"1850","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Pembroke Welsh Corgi (short coat)","animalCoatLength":"Short","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><p>Addie is a 16 month old, purebred Pembroke Welsh Corgi! Addie enjoys playing frisbee or catch with anything! Although she is content being independent while enjoying a chew bone or favorite toy, she does crave attention. She enjoys going for walks, however, with her short legs, she does tire out and then enjoys a nice nap! </p><br> <p><font size=\"2\" face=\"Arial, Helvetica, sans-serif\"><strong>For more information please fill out <a href=\"http://fs7.formsite.com/vchess/form093291316/index.html\">APPLICATION</a></strong></font></p><br> <p class=\"style4 style98 style106\"><font size=\"2\"><span class=\"style4 style120 style128\"><font color=\"#006600\" face=\"Arial, Helvetica, sans-serif\">Our Pets can be seen upon appointment or in person every Saturday. </font></span></font></p><br> <p class=\"style4 style98 style106\"><font color=\"#660033\" size=\"2\" face=\"Arial, Helvetica, sans-serif\"><span class=\"style129 style4\">Please visit our <a href=\"http://www.tarasdream.org/events.html\">EVENTS PAGE</a> for more information on our time and locations.</span></font></p><br> <p class=\"style98 style4\"><strong><font size=\"2\" face=\"Arial, Helvetica, sans-serif\">Pets listed in TARA's web site are eligible to a<font color=\"#FF0000\"> two week trial</font>.</font></strong></p><br> <p class=\"style117\"><font size=\"2\" face=\"Arial, Helvetica, sans-serif\"><span class=\"style101\">Adoption fee varies</span><font color=\"#0000FF\">, usually from</font> <font color=\"#990000\">$150.00</font></font><font color=\"#990000\" size=\"2\" face=\"Arial, Helvetica, sans-serif\">.00<font color=\"#0000FF\"> to</font> $250.00</font><font color=\"#0000FF\" size=\"2\" face=\"Arial, Helvetica, sans-serif\">.</font></p><br> <p class=\"style4 style98 style106\"><font size=\"2\" face=\"Arial, Helvetica, sans-serif\"> For more information, please visit our <a href=\"http://www.tarasdream.org/\">Web Site</a>. </font></p><br> <p class=\"style117\"> <font size=\"2\" face=\"Arial, Helvetica, sans-serif\"><a href=\"http://fs7.formsite.com/vchess/form109883748/index.html\">Email T.A.R.A.</a> | <a href=\"http://www.tarasdream.org/\">T.A.R.A.'s Web Site</a> | <a href=\"http://fs7.formsite.com/vchess/form093291316/index.html\"> On-Line Application</a></font></p></div>","animalDescriptionPlain":"Addie is a 16 month old, purebred Pembroke Welsh Corgi! Addie enjoys playing frisbee or catch with anything! Although she is content being independent while enjoying a chew bone or favorite toy, she does crave attention. She enjoys going for walks, however, with her short legs, she does tire out and then enjoys a nice nap! For more information please fill out APPLICATION Our Pets can be seen upon appointment or in person every Saturday. Please visit our EVENTS PAGE for more information on our time and locations. Pets listed in TARA's web site are eligible to a two week trial. Adoption fee varies, usually from $150.00.00 to $250.00. For more information, please visit our Web Site. Email T.A.R.A. | T.A.R.A.'s Web Site | On-Line Application","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"64052","animalLocationCitystate":"Independence, MO","animalMicrochipped":"","animalMixedBreed":"","animalName":"Addie","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Pembroke Welsh Corgi","animalPrimaryBreedID":"585","animalRescueID":"","animalSearchString":"Addie Female Small Dogs Pembroke Welsh Corgi (short coat)s","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161559_100x115.jpg","animalUptodate":"Yes","animalUpdatedDate":"10/8/2014 10:56 AM","animalUrl":"http://tarasdream.rescuegroups.org/animals/detail?AnimalID=1001923","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"tjsadler1980@gmail.com","fosterFirstname":"Tracey","fosterLastname":"","fosterName":"Tracey","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"2161559","mediaOrder":"1","lastUpdated":"10/27/2008 9:04 PM","fileSize":"46190","resolutionX":"500","resolutionY":"575","fileNameFullsize":"2161559_500x575.jpg","fileNameThumbnail":"2161559_100x115.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161559_500x575.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161559_100x115.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161559_500x575.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161559_100x115.jpg","original":{"type":"Original","fileSize":"46190","resolutionX":"500","resolutionY":"575","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161559_500x575.jpg"},"large":{"type":"Large","fileSize":"46190","resolutionX":"500","resolutionY":"575","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161559_500x575.jpg"},"small":{"type":"Small","fileSize":"4104","resolutionX":"100","resolutionY":"115","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161559_100x115.jpg"}},{"mediaID":"2161560","mediaOrder":"2","lastUpdated":"10/27/2008 9:04 PM","fileSize":"147911","resolutionX":"484","resolutionY":"830","fileNameFullsize":"2161560_484x830.jpg","fileNameThumbnail":"2161560_100x171.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161560_484x830.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161560_100x171.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161560_484x830.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161560_100x171.jpg","original":{"type":"Original","fileSize":"147911","resolutionX":"484","resolutionY":"830","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161560_484x830.jpg"},"large":{"type":"Large","fileSize":"147911","resolutionX":"484","resolutionY":"830","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161560_484x830.jpg"},"small":{"type":"Small","fileSize":"4666","resolutionX":"100","resolutionY":"171","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161560_100x171.jpg"}},{"mediaID":"2161561","mediaOrder":"3","lastUpdated":"10/27/2008 9:04 PM","fileSize":"31174","resolutionX":"500","resolutionY":"466","fileNameFullsize":"2161561_500x466.jpg","fileNameThumbnail":"2161561_100x93.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161561_500x466.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161561_100x93.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161561_500x466.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161561_100x93.jpg","original":{"type":"Original","fileSize":"31174","resolutionX":"500","resolutionY":"466","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161561_500x466.jpg"},"large":{"type":"Large","fileSize":"31174","resolutionX":"500","resolutionY":"466","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161561_500x466.jpg"},"small":{"type":"Small","fileSize":"2368","resolutionX":"100","resolutionY":"93","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1850/pictures/animals/1001/1001923/2161561_100x93.jpg"}}],"animalVideos":[],"animalVideoUrls":[]}]}
@@ -0,0 +1 @@
1
+ {"status":"warning","messages":{"generalMessages":[{"messageID":"1035","messageCriticality":"warning","messageText":"You just performed a search of public animal data without the animal status field as part of the criteria. A query without the status field may be very slow due to the number of records that will be included."}],"recordMessages":[]},"foundRows":328,"data":{"101809":{"animalID":"101809","animalOrgID":"696","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">We believe Clancy is a purebred Cardigan Corgi. He is aproximately 5 years old and full of love and energy. He walks well on a leash, usually comes when he is called and so far has liked everyone he meets on sight. He is crate trained and currently stays all night in his crate without a peep or protest. He was rescued from the Animal Shelter by another rescue group that then turned him over to us. He lost some weight while at the shelter and I'd like to see him gain about 5 pounds. He is eating well here (dry kibble) so I expect he will gain the weight with no trouble. He definately is NOT a \"kennel\" dog. When he was confined to a kennel (both at the shelter and at the rescue that orginally saved him) he whines and paces and won't eat well. The rescue that pulled him from the shelter turned him over to our rescue because our dogs are fostered in the house as our companions, not kept in kennels. Having his best interest in mind, they needed to get him out of the kennel situation and into a home. He does fantastic in the yard with the other dogs. He got a bit \"ball\" posessive when the Terrier tried to take the ball he was playing with, but not a serious \"hurt you\" attack, just a \"let go\" to the young terrier. Cardigans are the more \"laid back\" of the Corgis, BUT he is still a fairly high energy dog and needs a home where he can run and play. I am looking for a home without small children for him. A child 5 years or older should be just fine if they understand to be gentle. As a breed, Corgi's don't tolerate abuse (even accidental abuse) very well. Treated with firmness, but kindness, they are loving and very intelligent dogs. Corgis are herd dogs, so expect a dog that loves to chase things and barks excitedly when doing so. They usually do very well in Agility and obedience training. Clancy was only recently neutered, so we are working on the house training. He still has the \"male marking\" attitude so when in the house he is leashed so we can prevent him from marking. He does appear to understand not to \"potty\" in the house, but marking his territory is a different ball game. He is good about sitting or laying down by us when in the house and with some work, he should become reliable and understand that peeing is also NOT acceptable in the house. At about 30 pounds and only around 12 inches high, he is a perfect dog for someone that likes big dogs, but needs a small one! If you are interested in Clancy, please email me and tell me a bit about what you want and what you can offer a dog! We have an adoption application we can send you if it appears that you would be a good match for him You can see all of our fosters at our home page: www.shortnsweetdogrescue.org You can come visit our fosters at the open Dog Adoptathon at the North County Humane Society at 2300 Ramona Road, ATASCADERO, CA 93422 between 11:00 and 1:00 every Saturday except certain holidays. </font></p></div>","animalDescriptionPlain":"We believe Clancy is a purebred Cardigan Corgi. He is aproximately 5 years old and full of love and energy. He walks well on a leash, usually comes when he is called and so far has liked everyone he meets on sight. He is crate trained and currently stays all night in his crate without a peep or protest. He was rescued from the Animal Shelter by another rescue group that then turned him over to us. He lost some weight while at the shelter and I'd like to see him gain about 5 pounds. He is eating well here (dry kibble) so I expect he will gain the weight with no trouble. He definately is NOT a \"kennel\" dog. When he was confined to a kennel (both at the shelter and at the rescue that orginally saved him) he whines and paces and won't eat well. The rescue that pulled him from the shelter turned him over to our rescue because our dogs are fostered in the house as our companions, not kept in kennels. Having his best interest in mind, they needed to get him out of the kennel situation and into a home. He does fantastic in the yard with the other dogs. He got a bit \"ball\" posessive when the Terrier tried to take the ball he was playing with, but not a serious \"hurt you\" attack, just a \"let go\" to the young terrier. Cardigans are the more \"laid back\" of the Corgis, BUT he is still a fairly high energy dog and needs a home where he can run and play. I am looking for a home without small children for him. A child 5 years or older should be just fine if they understand to be gentle. As a breed, Corgi's don't tolerate abuse (even accidental abuse) very well. Treated with firmness, but kindness, they are loving and very intelligent dogs. Corgis are herd dogs, so expect a dog that loves to chase things and barks excitedly when doing so. They usually do very well in Agility and obedience training. Clancy was only recently neutered, so we are working on the house training. He still has the \"male marking\" attitude so when in the house he is leashed so we can prevent him from marking. He does appear to understand not to \"potty\" in the house, but marking his territory is a different ball game. He is good about sitting or laying down by us when in the house and with some work, he should become reliable and understand that peeing is also NOT acceptable in the house. At about 30 pounds and only around 12 inches high, he is a perfect dog for someone that likes big dogs, but needs a small one! If you are interested in Clancy, please email me and tell me a bit about what you want and what you can offer a dog! We have an adoption application we can send you if it appears that you would be a good match for him You can see all of our fosters at our home page: www.shortnsweetdogrescue.org You can come visit our fosters at the open Dog Adoptathon at the North County Humane Society at 2300 Ramona Road, ATASCADERO, CA 93422 between 11:00 and 1:00 every Saturday except certain holidays. ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"93465","animalMicrochipped":"","animalMixedBreed":"","animalName":"Clancy","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"No","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"02D18120500","animalSearchString":"Clancy Male Medium 02D18120500 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179152_100x145.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"179152","mediaOrder":"1","lastUpdated":"8/9/2007 5:50 PM","fileSize":"36748","resolutionX":"303","resolutionY":"440","fileNameFullsize":"179152_303x440.jpg","fileNameThumbnail":"179152_100x145.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179152_303x440.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179152_100x145.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179152_303x440.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179152_100x145.jpg","original":{"type":"Original","fileSize":"36748","resolutionX":"303","resolutionY":"440","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179152_303x440.jpg"},"large":{"type":"Large","fileSize":"36748","resolutionX":"303","resolutionY":"440","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179152_303x440.jpg"},"small":{"type":"Small","fileSize":"4045","resolutionX":"100","resolutionY":"145","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179152_100x145.jpg"}},{"mediaID":"179153","mediaOrder":"2","lastUpdated":"8/9/2007 5:50 PM","fileSize":"49660","resolutionX":"348","resolutionY":"440","fileNameFullsize":"179153_348x440.jpg","fileNameThumbnail":"179153_100x126.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179153_348x440.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179153_100x126.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179153_348x440.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179153_100x126.jpg","original":{"type":"Original","fileSize":"49660","resolutionX":"348","resolutionY":"440","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179153_348x440.jpg"},"large":{"type":"Large","fileSize":"49660","resolutionX":"348","resolutionY":"440","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179153_348x440.jpg"},"small":{"type":"Small","fileSize":"4453","resolutionX":"100","resolutionY":"126","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179153_100x126.jpg"}},{"mediaID":"179154","mediaOrder":"3","lastUpdated":"8/9/2007 5:50 PM","fileSize":"47187","resolutionX":"330","resolutionY":"440","fileNameFullsize":"179154_330x440.jpg","fileNameThumbnail":"179154_100x133.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179154_330x440.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179154_100x133.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179154_330x440.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179154_100x133.jpg","original":{"type":"Original","fileSize":"47187","resolutionX":"330","resolutionY":"440","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179154_330x440.jpg"},"large":{"type":"Large","fileSize":"47187","resolutionX":"330","resolutionY":"440","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179154_330x440.jpg"},"small":{"type":"Small","fileSize":"2799","resolutionX":"100","resolutionY":"133","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/696/pictures/animals/101/101809/179154_100x133.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1031851":{"animalID":"1031851","animalOrgID":"2688","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">PLEASE NOTE: This is an independent rescue. PLEASE Contact Maggie directly, see contact info. below.\r \r Meet Mags & Max. They are both about 1 yr old. Max is the male red/white. Mags the female is sable/white. They are not related, but are madly in love with each other. They are very intelligent, obedient, happy, healthy and humorous and completely adorable! They are both fixed, UTD on shots, HOUSETRAINED and get along with other dogs and children. We need to find a home immediately. If you'd like more information, pls contact Maggie Schick - 661-972-0545 or email maggischick@yahoo.com</div>","animalDescriptionPlain":"PLEASE NOTE: This is an independent rescue. PLEASE Contact Maggie directly, see contact info. below.\r \r Meet Mags & Max. They are both about 1 yr old. Max is the male red/white. Mags the female is sable/white. They are not related, but are madly in love with each other. They are very intelligent, obedient, happy, healthy and humorous and completely adorable! They are both fixed, UTD on shots, HOUSETRAINED and get along with other dogs and children. We need to find a home immediately. If you'd like more information, pls contact Maggie Schick - 661-972-0545 or email maggischick@yahoo.com","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"90292","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Mags & Max","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Mags & Max Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222535_100x75.jpg","animalUptodate":"","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"2222535","mediaOrder":"1","lastUpdated":"11/12/2008 1:45 PM","fileSize":"28941","resolutionX":"419","resolutionY":"315","fileNameFullsize":"2222535_419x315.jpg","fileNameThumbnail":"2222535_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222535_419x315.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222535_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222535_419x315.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222535_100x75.jpg","original":{"type":"Original","fileSize":"28941","resolutionX":"419","resolutionY":"315","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222535_419x315.jpg"},"large":{"type":"Large","fileSize":"28941","resolutionX":"419","resolutionY":"315","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222535_419x315.jpg"},"small":{"type":"Small","fileSize":"3121","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222535_100x75.jpg"}},{"mediaID":"2222536","mediaOrder":"2","lastUpdated":"11/12/2008 1:45 PM","fileSize":"23301","resolutionX":"419","resolutionY":"315","fileNameFullsize":"2222536_419x315.jpg","fileNameThumbnail":"2222536_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222536_419x315.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222536_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222536_419x315.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222536_100x75.jpg","original":{"type":"Original","fileSize":"23301","resolutionX":"419","resolutionY":"315","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222536_419x315.jpg"},"large":{"type":"Large","fileSize":"23301","resolutionX":"419","resolutionY":"315","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222536_419x315.jpg"},"small":{"type":"Small","fileSize":"2751","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2688/pictures/animals/1031/1031851/2222536_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"106124":{"animalID":"106124","animalOrgID":"646","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Pip is a 12 wk old Pembroke Welsh Corgi. She is crate trained, gets along with other dogs and is very affectionate. f you are interested in adopting this pet, please email lisa@3beards.net for an application. An overview of our adoption process can be found on the main shelter page of petfinder, or on our website at: www.ANewStartOnLife.com. </div>","animalDescriptionPlain":"Pip is a 12 wk old Pembroke Welsh Corgi. She is crate trained, gets along with other dogs and is very affectionate. f you are interested in adopting this pet, please email lisa@3beards.net for an application. An overview of our adoption process can be found on the main shelter page of petfinder, or on our website at: www.ANewStartOnLife.com. ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Baby","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"49419","animalMicrochipped":"","animalMixedBreed":"","animalName":"Pip","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Pip Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188198_100x114.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"188198","mediaOrder":"1","lastUpdated":"8/9/2007 5:50 PM","fileSize":"54577","resolutionX":"391","resolutionY":"449","fileNameFullsize":"188198_391x449.jpg","fileNameThumbnail":"188198_100x114.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188198_391x449.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188198_100x114.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188198_391x449.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188198_100x114.jpg","original":{"type":"Original","fileSize":"54577","resolutionX":"391","resolutionY":"449","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188198_391x449.jpg"},"large":{"type":"Large","fileSize":"54577","resolutionX":"391","resolutionY":"449","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188198_391x449.jpg"},"small":{"type":"Small","fileSize":"4564","resolutionX":"100","resolutionY":"114","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188198_100x114.jpg"}},{"mediaID":"188199","mediaOrder":"2","lastUpdated":"8/9/2007 5:50 PM","fileSize":"54577","resolutionX":"391","resolutionY":"449","fileNameFullsize":"188199_391x449.jpg","fileNameThumbnail":"188199_100x114.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188199_391x449.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188199_100x114.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188199_391x449.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188199_100x114.jpg","original":{"type":"Original","fileSize":"54577","resolutionX":"391","resolutionY":"449","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188199_391x449.jpg"},"large":{"type":"Large","fileSize":"54577","resolutionX":"391","resolutionY":"449","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188199_391x449.jpg"},"small":{"type":"Small","fileSize":"4564","resolutionX":"100","resolutionY":"114","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188199_100x114.jpg"}},{"mediaID":"188200","mediaOrder":"3","lastUpdated":"8/9/2007 5:50 PM","fileSize":"52546","resolutionX":"380","resolutionY":"285","fileNameFullsize":"188200_380x285.jpg","fileNameThumbnail":"188200_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188200_380x285.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188200_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188200_380x285.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188200_100x75.jpg","original":{"type":"Original","fileSize":"52546","resolutionX":"380","resolutionY":"285","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188200_380x285.jpg"},"large":{"type":"Large","fileSize":"52546","resolutionX":"380","resolutionY":"285","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188200_380x285.jpg"},"small":{"type":"Small","fileSize":"4069","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/646/pictures/animals/106/106124/188200_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1064711":{"animalID":"1064711","animalOrgID":"562","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Red","animalColorID":"55","animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"","animalDescriptionPlain":"","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"46226","animalMicrochipped":"","animalMixedBreed":"","animalName":"BRANDY","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"BRANDY Red Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[],"animalVideos":[],"animalVideoUrls":[]},"1165803":{"animalID":"1165803","animalOrgID":"2811","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Telly is a very friendly female 3 year old Corgi purebred. She is as cute as a button with her short little legs, large erect ears and sweet little fox-like face! Telly is super friendly, wanting to be around her people pals. She loves to go for walks and sure would love to have a play pal! Telly loves to be in laps getting lots of pets! Telly would be best placed in a home without young children. She nervous when people are by her food bowl and likes to make sure she doesn't have anyone messing with her food. Other than that, Telly is a happy-go-lucky little gal who will make a a great pet for you. If your home could use a happy, lovable, sweet canine, please consider adopting Telly!<p>\r \r She's ready to meet all her new friends. Come on out - we are open 7 days a week from 11am to 4pm!</div>","animalDescriptionPlain":"Telly is a very friendly female 3 year old Corgi purebred. She is as cute as a button with her short little legs, large erect ears and sweet little fox-like face! Telly is super friendly, wanting to be around her people pals. She loves to go for walks and sure would love to have a play pal! Telly loves to be in laps getting lots of pets! Telly would be best placed in a home without young children. She nervous when people are by her food bowl and likes to make sure she doesn't have anyone messing with her food. Other than that, Telly is a happy-go-lucky little gal who will make a a great pet for you. If your home could use a happy, lovable, sweet canine, please consider adopting Telly!\r \r She's ready to meet all her new friends. Come on out - we are open 7 days a week from 11am to 4pm!","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"49855","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Telly","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Telly Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/2811/pictures/animals/1165/1165803/2477417_100x130.jpg","animalUptodate":"","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"http://upaws.rescuegroups.org/animals/detail?AnimalID=1165803","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"2477417","mediaOrder":"1","lastUpdated":"1/12/2009 10:48 PM","fileSize":"48673","resolutionX":"383","resolutionY":"500","fileNameFullsize":"2477417_383x500.jpg","fileNameThumbnail":"2477417_100x130.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2811/pictures/animals/1165/1165803/2477417_383x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2811/pictures/animals/1165/1165803/2477417_100x130.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2811/pictures/animals/1165/1165803/2477417_383x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2811/pictures/animals/1165/1165803/2477417_100x130.jpg","original":{"type":"Original","fileSize":"48673","resolutionX":"383","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2811/pictures/animals/1165/1165803/2477417_383x500.jpg"},"large":{"type":"Large","fileSize":"48673","resolutionX":"383","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2811/pictures/animals/1165/1165803/2477417_383x500.jpg"},"small":{"type":"Small","fileSize":"4052","resolutionX":"100","resolutionY":"130","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2811/pictures/animals/1165/1165803/2477417_100x130.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1202939":{"animalID":"1202939","animalOrgID":"2741","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">This dog is at Dogs Days Inn In Tamarac, FL. 954-730-8398. Stop by anytime Tues-Sat 1-5 to meet all our rescue pets and to fill out an application. Our application is also available online at animal-aid.com\r \r The donation we are requesting is $75 and includes our medical program; all vaccines, rabies vaccine, fecal exam, de-worming, blood test for heartworm and tick diseases, spay or neuter, a lifetime microchip ID, a vet exam, pet insurance for a month, one training class, first grooming (if needed) first month heartguard and frontline plus a bag of Science Diet food. \r \r The adopter of this dog will also receive a gift certificate for a one night stay at Dogs Days Inn in Tamarac Florida.</div>","animalDescriptionPlain":"This dog is at Dogs Days Inn In Tamarac, FL. 954-730-8398. Stop by anytime Tues-Sat 1-5 to meet all our rescue pets and to fill out an application. Our application is also available online at animal-aid.com\r \r The donation we are requesting is $75 and includes our medical program; all vaccines, rabies vaccine, fecal exam, de-worming, blood test for heartworm and tick diseases, spay or neuter, a lifetime microchip ID, a vet exam, pet insurance for a month, one training class, first grooming (if needed) first month heartguard and frontline plus a bag of Science Diet food. \r \r The adopter of this dog will also receive a gift certificate for a one night stay at Dogs Days Inn in Tamarac Florida.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"33334","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Nolie","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"No","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Nolie Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1202/1202939/2553940_100x149.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"http://animalaidinc.rescuegroups.org/animals/detail?AnimalID=1202939","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"2553940","mediaOrder":"1","lastUpdated":"1/28/2009 4:16 PM","fileSize":"16001","resolutionX":"334","resolutionY":"500","fileNameFullsize":"2553940_334x500.jpg","fileNameThumbnail":"2553940_100x149.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1202/1202939/2553940_334x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1202/1202939/2553940_100x149.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1202/1202939/2553940_334x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1202/1202939/2553940_100x149.jpg","original":{"type":"Original","fileSize":"16001","resolutionX":"334","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1202/1202939/2553940_334x500.jpg"},"large":{"type":"Large","fileSize":"16001","resolutionX":"334","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1202/1202939/2553940_334x500.jpg"},"small":{"type":"Small","fileSize":"3131","resolutionX":"100","resolutionY":"149","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1202/1202939/2553940_100x149.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1203989":{"animalID":"1203989","animalOrgID":"2741","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">She is a tan corgi - Contact us online so we can make sure to have this dog at the adoption center, select \"contact us\" from our website animal-aid.com. Stop by anytime we're open Friday-Sunday 1-5. Our application is also available online at animal-aid.com. The $100 donation we are requesting will help the next dog or cat in need and includes our medical program; all vaccines, rabies vaccine, fecal exam, de-worming, blood test for heartworm and tick diseases, spay or neuter, a lifetime microchip ID, a vet exam, pet insurance for a month, and frontline plus a bag of Science Diet food. </div>","animalDescriptionPlain":"She is a tan corgi - Contact us online so we can make sure to have this dog at the adoption center, select \"contact us\" from our website animal-aid.com. Stop by anytime we're open Friday-Sunday 1-5. Our application is also available online at animal-aid.com. The $100 donation we are requesting will help the next dog or cat in need and includes our medical program; all vaccines, rabies vaccine, fecal exam, de-worming, blood test for heartworm and tick diseases, spay or neuter, a lifetime microchip ID, a vet exam, pet insurance for a month, and frontline plus a bag of Science Diet food. ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"33334","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Selma","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Selma Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1203/1203989/2555531_100x149.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"http://animalaidinc.rescuegroups.org/animals/detail?AnimalID=1203989","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"2555531","mediaOrder":"1","lastUpdated":"1/28/2009 5:07 PM","fileSize":"22113","resolutionX":"220","resolutionY":"329","fileNameFullsize":"2555531_220x329.jpg","fileNameThumbnail":"2555531_100x149.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1203/1203989/2555531_220x329.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1203/1203989/2555531_100x149.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1203/1203989/2555531_220x329.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1203/1203989/2555531_100x149.jpg","original":{"type":"Original","fileSize":"22113","resolutionX":"220","resolutionY":"329","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1203/1203989/2555531_220x329.jpg"},"large":{"type":"Large","fileSize":"22113","resolutionX":"220","resolutionY":"329","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1203/1203989/2555531_220x329.jpg"},"small":{"type":"Small","fileSize":"4864","resolutionX":"100","resolutionY":"149","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2741/pictures/animals/1203/1203989/2555531_100x149.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1232966":{"animalID":"1232966","animalOrgID":"2456","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Red/Golden/Orange/Chestnut with White","animalColorID":"33","animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Hans is a sweet boy. He loves to have belly rubs and be with his person. True to his breed, he does like to herd, so small children may not be the ideal home. He does get along with most dogs but tries to see if he can be boss. <br><br> Hans will caputre your heart with his wonderful personality. He will always make you laugh. <br><br>If you would like Hans as your new best friend, please contact Annette at annette@almosthometn.net or 865-977-0751. Unless otherwise noted, all Almost Home dogs are healthy, spayed/neutered, up-to-date on vaccinations, on heartworm preventative, and flea & tick preventative.<br> <br><br></div>","animalDescriptionPlain":"Hans is a sweet boy. He loves to have belly rubs and be with his person. True to his breed, he does like to herd, so small children may not be the ideal home. He does get along with most dogs but tries to see if he can be boss. Hans will caputre your heart with his wonderful personality. He will always make you laugh. If you would like Hans as your new best friend, please contact Annette at annette@almosthometn.net or 865-977-0751. Unless otherwise noted, all Almost Home dogs are healthy, spayed/neutered, up-to-date on vaccinations, on heartworm preventative, and flea & tick preventative. ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"37802","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Hans","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"Yes","animalOKWithKids":"Yes","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Hans Red/Golden/Orange/Chestnut with White Male Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615523_100x150.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"2615523","mediaOrder":"1","lastUpdated":"2/9/2009 7:56 PM","fileSize":"73552","resolutionX":"380","resolutionY":"570","fileNameFullsize":"2615523_380x570.jpg","fileNameThumbnail":"2615523_100x150.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615523_380x570.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615523_100x150.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615523_380x570.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615523_100x150.jpg","original":{"type":"Original","fileSize":"73552","resolutionX":"380","resolutionY":"570","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615523_380x570.jpg"},"large":{"type":"Large","fileSize":"73552","resolutionX":"380","resolutionY":"570","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615523_380x570.jpg"},"small":{"type":"Small","fileSize":"5149","resolutionX":"100","resolutionY":"150","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615523_100x150.jpg"}},{"mediaID":"2615524","mediaOrder":"2","lastUpdated":"2/9/2009 7:56 PM","fileSize":"79682","resolutionX":"379","resolutionY":"358","fileNameFullsize":"2615524_379x358.jpg","fileNameThumbnail":"2615524_100x94.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615524_379x358.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615524_100x94.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615524_379x358.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615524_100x94.jpg","original":{"type":"Original","fileSize":"79682","resolutionX":"379","resolutionY":"358","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615524_379x358.jpg"},"large":{"type":"Large","fileSize":"79682","resolutionX":"379","resolutionY":"358","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615524_379x358.jpg"},"small":{"type":"Small","fileSize":"4581","resolutionX":"100","resolutionY":"94","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615524_100x94.jpg"}},{"mediaID":"2615525","mediaOrder":"3","lastUpdated":"2/9/2009 7:56 PM","fileSize":"81294","resolutionX":"380","resolutionY":"570","fileNameFullsize":"2615525_380x570.jpg","fileNameThumbnail":"2615525_100x150.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615525_380x570.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615525_100x150.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615525_380x570.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615525_100x150.jpg","original":{"type":"Original","fileSize":"81294","resolutionX":"380","resolutionY":"570","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615525_380x570.jpg"},"large":{"type":"Large","fileSize":"81294","resolutionX":"380","resolutionY":"570","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615525_380x570.jpg"},"small":{"type":"Small","fileSize":"4769","resolutionX":"100","resolutionY":"150","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615525_100x150.jpg"}},{"mediaID":"2615526","mediaOrder":"4","lastUpdated":"2/9/2009 7:56 PM","fileSize":"67935","resolutionX":"379","resolutionY":"283","fileNameFullsize":"2615526_379x283.jpg","fileNameThumbnail":"2615526_100x74.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615526_379x283.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615526_100x74.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615526_379x283.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615526_100x74.jpg","original":{"type":"Original","fileSize":"67935","resolutionX":"379","resolutionY":"283","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615526_379x283.jpg"},"large":{"type":"Large","fileSize":"67935","resolutionX":"379","resolutionY":"283","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615526_379x283.jpg"},"small":{"type":"Small","fileSize":"3986","resolutionX":"100","resolutionY":"74","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2456/pictures/animals/1232/1232966/2615526_100x74.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1236568":{"animalID":"1236568","animalOrgID":"2924","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Hello i am a just an adoooorrrable 10 month old (maybe younger)corgi. please call my foster at 330-622-6383 or 440-320-3806\r i'm also micro chipped, and fully vetted\r i am becomming more playful daily. I sleep with a nine year old little girl. I have never to date had an accident over night but i am doing very very well on my daily training. i am also crate trained. however i am finding stairs a wild ride!! but i'm learning. Please come and meet me!!</div>","animalDescriptionPlain":"Hello i am a just an adoooorrrable 10 month old (maybe younger)corgi. please call my foster at 330-622-6383 or 440-320-3806\r i'm also micro chipped, and fully vetted\r i am becomming more playful daily. I sleep with a nine year old little girl. I have never to date had an accident over night but i am doing very very well on my daily training. i am also crate trained. however i am finding stairs a wild ride!! but i'm learning. Please come and meet me!!","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"44309","animalMicrochipped":"","animalMixedBreed":"No","animalName":"chopstick","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"chopstick Male Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623341_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"2623341","mediaOrder":"1","lastUpdated":"2/11/2009 10:19 AM","fileSize":"105549","resolutionX":"500","resolutionY":"375","fileNameFullsize":"2623341_500x375.jpg","fileNameThumbnail":"2623341_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623341_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623341_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623341_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623341_100x75.jpg","original":{"type":"Original","fileSize":"105549","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623341_500x375.jpg"},"large":{"type":"Large","fileSize":"105549","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623341_500x375.jpg"},"small":{"type":"Small","fileSize":"3157","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623341_100x75.jpg"}},{"mediaID":"2623342","mediaOrder":"2","lastUpdated":"2/11/2009 10:19 AM","fileSize":"98191","resolutionX":"500","resolutionY":"375","fileNameFullsize":"2623342_500x375.jpg","fileNameThumbnail":"2623342_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623342_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623342_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623342_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623342_100x75.jpg","original":{"type":"Original","fileSize":"98191","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623342_500x375.jpg"},"large":{"type":"Large","fileSize":"98191","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623342_500x375.jpg"},"small":{"type":"Small","fileSize":"2949","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236568/2623342_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1236569":{"animalID":"1236569","animalOrgID":"2924","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Hi, my name is Chowder and I am an adorable Corgi. I am about 2 years old and a real sweet girl. I listen well, am good with kids, and am going to make a great family pet. If you would like to meet me, please email pawsandprayers@neo.rr.com and fill out the application online. Adoption fee is $200. COME MEET ME THIS WEEKEND 11-2 AT PETSMART CHAPEL HILL!</div>","animalDescriptionPlain":"Hi, my name is Chowder and I am an adorable Corgi. I am about 2 years old and a real sweet girl. I listen well, am good with kids, and am going to make a great family pet. If you would like to meet me, please email pawsandprayers@neo.rr.com and fill out the application online. Adoption fee is $200. COME MEET ME THIS WEEKEND 11-2 AT PETSMART CHAPEL HILL!","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"44309","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Chowder","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Chowder Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623343_100x66.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"2623343","mediaOrder":"1","lastUpdated":"2/11/2009 10:19 AM","fileSize":"18843","resolutionX":"500","resolutionY":"333","fileNameFullsize":"2623343_500x333.jpg","fileNameThumbnail":"2623343_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623343_500x333.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623343_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623343_500x333.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623343_100x66.jpg","original":{"type":"Original","fileSize":"18843","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623343_500x333.jpg"},"large":{"type":"Large","fileSize":"18843","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623343_500x333.jpg"},"small":{"type":"Small","fileSize":"2235","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623343_100x66.jpg"}},{"mediaID":"2623344","mediaOrder":"2","lastUpdated":"2/11/2009 10:19 AM","fileSize":"21183","resolutionX":"500","resolutionY":"333","fileNameFullsize":"2623344_500x333.jpg","fileNameThumbnail":"2623344_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623344_500x333.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623344_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623344_500x333.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623344_100x66.jpg","original":{"type":"Original","fileSize":"21183","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623344_500x333.jpg"},"large":{"type":"Large","fileSize":"21183","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623344_500x333.jpg"},"small":{"type":"Small","fileSize":"2451","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623344_100x66.jpg"}},{"mediaID":"2623345","mediaOrder":"3","lastUpdated":"2/11/2009 10:19 AM","fileSize":"24019","resolutionX":"500","resolutionY":"333","fileNameFullsize":"2623345_500x333.jpg","fileNameThumbnail":"2623345_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623345_500x333.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623345_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623345_500x333.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623345_100x66.jpg","original":{"type":"Original","fileSize":"24019","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623345_500x333.jpg"},"large":{"type":"Large","fileSize":"24019","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623345_500x333.jpg"},"small":{"type":"Small","fileSize":"2675","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1236/1236569/2623345_100x66.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1237039":{"animalID":"1237039","animalOrgID":"2924","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">hello i am a 3 year old sable and white corgi. i am extreamly shy right now but i know i will come out of my shell. this whole family love thing is new to me. I'm very nice and submissive. i'm microshipped and fully vetted\r please call 330-622-6383 or 440-320-3806</div>","animalDescriptionPlain":"hello i am a 3 year old sable and white corgi. i am extreamly shy right now but i know i will come out of my shell. this whole family love thing is new to me. I'm very nice and submissive. i'm microshipped and fully vetted\r please call 330-622-6383 or 440-320-3806","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"44309","animalMicrochipped":"","animalMixedBreed":"No","animalName":"mooshue","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"mooshue Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1237/1237039/2624293_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"2624293","mediaOrder":"1","lastUpdated":"2/11/2009 11:02 AM","fileSize":"80434","resolutionX":"500","resolutionY":"375","fileNameFullsize":"2624293_500x375.jpg","fileNameThumbnail":"2624293_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1237/1237039/2624293_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1237/1237039/2624293_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1237/1237039/2624293_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1237/1237039/2624293_100x75.jpg","original":{"type":"Original","fileSize":"80434","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1237/1237039/2624293_500x375.jpg"},"large":{"type":"Large","fileSize":"80434","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1237/1237039/2624293_500x375.jpg"},"small":{"type":"Small","fileSize":"4194","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2924/pictures/animals/1237/1237039/2624293_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"12470":{"animalID":"12470","animalOrgID":"105","animalActivityLevel":"Highly Active","animalAdoptionFee":null,"animalAltered":"","animalAvailableDate":"","animalBirthdate":"10/29/2004","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"White","animalCourtesy":"No","animalDeclawed":"No","animalDescription":"<div class=\"rgDescription\">More information coming soon! I do know he is very friendly and wanted to play instead of getting his picture taken!<br><br>Notes for all animals: <br><br>We can only adopt our dogs and cats to homes within San Bernardino and Riverside Counties. <br><br>Please read our Adoption Information page as many questions are answered there. <br><br>http://barconline.com/info/adoption</div>","animalDescriptionPlain":"More information coming soon! I do know he is very friendly and wanted to play instead of getting his picture taken!Notes for all animals: We can only adopt our dogs and cats to homes within San Bernardino and Riverside Counties. Please read our Adoption Information page as many questions are answered there. http://barconline.com/info/adoption","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"92223","animalMicrochipped":"","animalMixedBreed":"","animalName":"Corey","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"Friendly","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"None","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"Yes","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"D050028","animalSearchString":"Corey White Male Small D050028 White Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":"Centimeters","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/22276_100x133.jpg","animalUptodate":"","animalUpdatedDate":"7/12/2010 8:21 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"22276","mediaOrder":"1","lastUpdated":"8/9/2007 5:50 PM","fileSize":"25971","resolutionX":"350","resolutionY":"466","fileNameFullsize":"22276_350x466.jpg","fileNameThumbnail":"22276_100x133.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/22276_350x466.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/22276_100x133.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/22276_350x466.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/22276_100x133.jpg","original":{"type":"Original","fileSize":"25971","resolutionX":"350","resolutionY":"466","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/22276_350x466.jpg"},"large":{"type":"Large","fileSize":"25971","resolutionX":"350","resolutionY":"466","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/22276_350x466.jpg"},"small":{"type":"Small","fileSize":"4168","resolutionX":"100","resolutionY":"133","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/22276_100x133.jpg"}},{"mediaID":"19361","mediaOrder":"2","lastUpdated":"8/9/2007 5:50 PM","fileSize":"25730","resolutionX":"350","resolutionY":"466","fileNameFullsize":"19361_350x466.jpg","fileNameThumbnail":"19361_100x133.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19361_350x466.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19361_100x133.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19361_350x466.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19361_100x133.jpg","original":{"type":"Original","fileSize":"25730","resolutionX":"350","resolutionY":"466","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19361_350x466.jpg"},"large":{"type":"Large","fileSize":"25730","resolutionX":"350","resolutionY":"466","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19361_350x466.jpg"},"small":{"type":"Small","fileSize":"4629","resolutionX":"100","resolutionY":"133","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19361_100x133.jpg"}},{"mediaID":"19362","mediaOrder":"3","lastUpdated":"8/9/2007 5:50 PM","fileSize":"29443","resolutionX":"350","resolutionY":"497","fileNameFullsize":"19362_350x497.jpg","fileNameThumbnail":"19362_100x142.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19362_350x497.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19362_100x142.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19362_350x497.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19362_100x142.jpg","original":{"type":"Original","fileSize":"29443","resolutionX":"350","resolutionY":"497","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19362_350x497.jpg"},"large":{"type":"Large","fileSize":"29443","resolutionX":"350","resolutionY":"497","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19362_350x497.jpg"},"small":{"type":"Small","fileSize":"4959","resolutionX":"100","resolutionY":"142","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19362_100x142.jpg"}},{"mediaID":"19365","mediaOrder":"4","lastUpdated":"8/9/2007 5:50 PM","fileSize":"22170","resolutionX":"350","resolutionY":"318","fileNameFullsize":"19365_350x318.jpg","fileNameThumbnail":"19365_100x90.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19365_350x318.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19365_100x90.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19365_350x318.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19365_100x90.jpg","original":{"type":"Original","fileSize":"22170","resolutionX":"350","resolutionY":"318","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19365_350x318.jpg"},"large":{"type":"Large","fileSize":"22170","resolutionX":"350","resolutionY":"318","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19365_350x318.jpg"},"small":{"type":"Small","fileSize":"3797","resolutionX":"100","resolutionY":"90","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/12/12470/19365_100x90.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1255419":{"animalID":"1255419","animalOrgID":"2175","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"","animalDescriptionPlain":"","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"70065","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Ragamuffin","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Ragamuffin Male Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/2175/pictures/animals/1255/1255419/2665184_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"2665184","mediaOrder":"1","lastUpdated":"2/20/2009 12:20 AM","fileSize":"48199","resolutionX":"500","resolutionY":"375","fileNameFullsize":"2665184_500x375.jpg","fileNameThumbnail":"2665184_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2175/pictures/animals/1255/1255419/2665184_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2175/pictures/animals/1255/1255419/2665184_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2175/pictures/animals/1255/1255419/2665184_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2175/pictures/animals/1255/1255419/2665184_100x75.jpg","original":{"type":"Original","fileSize":"48199","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2175/pictures/animals/1255/1255419/2665184_500x375.jpg"},"large":{"type":"Large","fileSize":"48199","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2175/pictures/animals/1255/1255419/2665184_500x375.jpg"},"small":{"type":"Small","fileSize":"3382","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2175/pictures/animals/1255/1255419/2665184_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1267568":{"animalID":"1267568","animalOrgID":"2750","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"Yes","animalAvailableDate":"","animalBirthdate":"2/26/2007","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Tricolor (Tan/Brown & Black & White)","animalColorID":"37","animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Braith was rescued from our local pound after having been picked up numerous times running loose in town. Her family supposedly had \"given her away\" the last time she was picked up and they declined to pick her up and pay the ticket. So we were contacted to see if we could help Braith find a home more suitable for a corgi. <br><br>We are still evaluating her and made the assumption that she is a traveler. However, her foster dad says that she has no interest in escaping from his yard and he has to make her go outside when she needs to go. Apparently, all she wants is to be inside and safe. Animal control said that when he was first picking her up, she was friendly and confident but gradually she became fearful and timid in her behavior (which is how she is acting right now). Given that information we think probably Braith was not traveling but simply looking for a place where she felt safe and happy. <br><br>We think she is housetrained but she is so stressed she is having a few accidents. He says she doesn't do well in a crate and is letting her stay in his bedroom for now.<br><br>The family who had her \"didn't know if she was spayed\" as they had adopted her last summer and didn't find that out. We will have her evaluated for that and spayed if necessary next week. We are hoping that she will relax and her true personality will emerge. She will need a special home where she is part of the family and where she will be given the time she needs to trust that she is safe.<br><br>She can be seen by appointment. </div>","animalDescriptionPlain":"Braith was rescued from our local pound after having been picked up numerous times running loose in town. Her family supposedly had \"given her away\" the last time she was picked up and they declined to pick her up and pay the ticket. So we were contacted to see if we could help Braith find a home more suitable for a corgi. We are still evaluating her and made the assumption that she is a traveler. However, her foster dad says that she has no interest in escaping from his yard and he has to make her go outside when she needs to go. Apparently, all she wants is to be inside and safe. Animal control said that when he was first picking her up, she was friendly and confident but gradually she became fearful and timid in her behavior (which is how she is acting right now). Given that information we think probably Braith was not traveling but simply looking for a place where she felt safe and happy. We think she is housetrained but she is so stressed she is having a few accidents. He says she doesn't do well in a crate and is letting her stay in his bedroom for now.The family who had her \"didn't know if she was spayed\" as they had adopted her last summer and didn't find that out. We will have her evaluated for that and spayed if necessary next week. We are hoping that she will relax and her true personality will emerge. She will need a special home where she is part of the family and where she will be given the time she needs to trust that she is safe.She can be seen by appointment. ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"64865","animalMicrochipped":"No","animalMixedBreed":"","animalName":"Braith","animalSpecialneeds":"","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"Cautious","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"Yes","animalOKWithDogs":"Yes","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"D090009","animalSearchString":"Braith Tricolor (Tan/Brown & Black & White) Female Medium D090009 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699703_100x75.jpg","animalUptodate":"","animalUpdatedDate":"4/27/2013 7:44 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"2699703","mediaOrder":"1","lastUpdated":"2/26/2009 10:55 PM","fileSize":"29061","resolutionX":"500","resolutionY":"375","fileNameFullsize":"2699703_500x375.jpg","fileNameThumbnail":"2699703_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699703_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699703_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699703_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699703_100x75.jpg","original":{"type":"Original","fileSize":"29061","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699703_500x375.jpg"},"large":{"type":"Large","fileSize":"29061","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699703_500x375.jpg"},"small":{"type":"Small","fileSize":"2524","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699703_100x75.jpg"}},{"mediaID":"2699938","mediaOrder":"2","lastUpdated":"2/26/2009 10:57 PM","fileSize":"30968","resolutionX":"500","resolutionY":"375","fileNameFullsize":"2699938_500x375.jpg","fileNameThumbnail":"2699938_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699938_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699938_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699938_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699938_100x75.jpg","original":{"type":"Original","fileSize":"30968","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699938_500x375.jpg"},"large":{"type":"Large","fileSize":"30968","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699938_500x375.jpg"},"small":{"type":"Small","fileSize":"2715","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699938_100x75.jpg"}},{"mediaID":"2699940","mediaOrder":"3","lastUpdated":"2/26/2009 10:58 PM","fileSize":"30015","resolutionX":"500","resolutionY":"375","fileNameFullsize":"2699940_500x375.jpg","fileNameThumbnail":"2699940_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699940_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699940_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699940_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699940_100x75.jpg","original":{"type":"Original","fileSize":"30015","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699940_500x375.jpg"},"large":{"type":"Large","fileSize":"30015","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699940_500x375.jpg"},"small":{"type":"Small","fileSize":"2570","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699940_100x75.jpg"}},{"mediaID":"2699941","mediaOrder":"4","lastUpdated":"2/26/2009 10:58 PM","fileSize":"39802","resolutionX":"500","resolutionY":"375","fileNameFullsize":"2699941_500x375.jpg","fileNameThumbnail":"2699941_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699941_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699941_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699941_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699941_100x75.jpg","original":{"type":"Original","fileSize":"39802","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699941_500x375.jpg"},"large":{"type":"Large","fileSize":"39802","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699941_500x375.jpg"},"small":{"type":"Small","fileSize":"3215","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/2750/pictures/animals/1267/1267568/2699941_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1313014":{"animalID":"1313014","animalOrgID":"105","animalActivityLevel":"","animalAdoptionFee":"$200","animalAltered":"","animalAvailableDate":"3/14/2009","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Tricolor (Tan/Brown & Black & White)","animalColorID":"37","animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgSummary\">Benny's adoption fee is $200 which INCLUDES his neutering and vaccinations.<br></div><div class=\"rgDescription\">What a SWEETHEART!! Benny is Corgi mix pup that is 10 weeks old, and looking for a home with plenty of toys for him to play. Benny is a smaller breed pup and should be no more than about 35lbs when full grown. Benny gets along well with other dogs, and would fit well in any household. Don't miss out on lil Benny</div>","animalDescriptionPlain":"What a SWEETHEART!! Benny is Corgi mix pup that is 10 weeks old, and looking for a home with plenty of toys for him to play. Benny is a smaller breed pup and should be no more than about 35lbs when full grown. Benny gets along well with other dogs, and would fit well in any household. Don't miss out on lil Benny","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Baby","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"92223","animalMicrochipped":"","animalMixedBreed":"","animalName":"Benny","animalSpecialneeds":"","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"1775","animalSearchString":"Benny Tricolor (Tan/Brown & Black & White) Male Small 1775 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"Benny's adoption fee is $200 which INCLUDES his neutering and vaccinations.","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/1313/1313014/2798873_100x75.jpg","animalUptodate":"","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"2798873","mediaOrder":"1","lastUpdated":"3/18/2009 5:34 PM","fileSize":"41940","resolutionX":"500","resolutionY":"375","fileNameFullsize":"2798873_500x375.jpg","fileNameThumbnail":"2798873_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/1313/1313014/2798873_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/1313/1313014/2798873_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/1313/1313014/2798873_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/1313/1313014/2798873_100x75.jpg","original":{"type":"Original","fileSize":"41940","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/1313/1313014/2798873_500x375.jpg"},"large":{"type":"Large","fileSize":"41940","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/1313/1313014/2798873_500x375.jpg"},"small":{"type":"Small","fileSize":"3110","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/105/pictures/animals/1313/1313014/2798873_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"14257":{"animalID":"14257","animalOrgID":"53","animalActivityLevel":"Moderately Active","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"12/6/2003","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"White/tan","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Chico is a great little boy looking for his forever home.</div>","animalDescriptionPlain":"Chico is a great little boy looking for his forever home.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"Indoor and Outdoor","animalKillDate":"","animalKillReason":"","animalLocation":"93277","animalMicrochipped":"","animalMixedBreed":"","animalName":"Chico","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"Friendly","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"Yes","animalOKWithKids":"","animalOwnerExperience":"None","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"Yes","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"D050103","animalSearchString":"Chico White/tan Male Small D050103 White/tan Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"15.0","animalSizePotential":"15.0","animalSizeUOM":"Pounds","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/53/pictures/animals/14/14257/22558_100x75.jpg","animalUptodate":"","animalUpdatedDate":"7/12/2010 8:21 AM","animalUrl":"http://www.loveofanimals.org/animals/detail?AnimalID=14257","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"Packwood East","locationCity":"Visalia","locationCountry":"United States","locationUrl":"","locationName":"PetSmart in Visalia","locationPhone":"","locationState":"CA","locationPostalcode":"93277","animalPictures":[{"mediaID":"22558","mediaOrder":"1","lastUpdated":"8/9/2007 5:50 PM","fileSize":"12725","resolutionX":"350","resolutionY":"262","fileNameFullsize":"22558_350x262.jpg","fileNameThumbnail":"22558_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/53/pictures/animals/14/14257/22558_350x262.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/53/pictures/animals/14/14257/22558_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/53/pictures/animals/14/14257/22558_350x262.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/53/pictures/animals/14/14257/22558_100x75.jpg","original":{"type":"Original","fileSize":"12725","resolutionX":"350","resolutionY":"262","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/53/pictures/animals/14/14257/22558_350x262.jpg"},"large":{"type":"Large","fileSize":"12725","resolutionX":"350","resolutionY":"262","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/53/pictures/animals/14/14257/22558_350x262.jpg"},"small":{"type":"Small","fileSize":"2250","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/53/pictures/animals/14/14257/22558_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1481422":{"animalID":"1481422","animalOrgID":"636","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"No","animalDescription":"<div class=\"rgDescription\">Hi!  My name is Watson and I'm a small (22lbs) 2 1/2 year old corgi mix or \r\ndachshund mix, no one can tell!  I'm neutered, microchipped, housetrained, and I \r\nhave all my shots.  I have a tough time trusting people because of my abusive \r\npast, but I'm a sweet and loving dog at heart - just give me some time, training \r\nand love!<br mce_bogus=\"1\"><div><br></div><div>Please email laurengrilli@gmail.com if you'd like to meet me!</div></div>","animalDescriptionPlain":"Hi!  My name is Watson and I'm a small (22lbs) 2 1/2 year old corgi mix or \r\ndachshund mix, no one can tell!  I'm neutered, microchipped, housetrained, and I \r\nhave all my shots.  I have a tough time trusting people because of my abusive \r\npast, but I'm a sweet and loving dog at heart - just give me some time, training \r\nand love!Please email laurengrilli@gmail.com if you'd like to meet me!","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"No","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"90213","animalMicrochipped":"","animalMixedBreed":"","animalName":"Watson","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"Yes","animalOKWithKids":"No","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Watson Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173742_100x171.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"3173742","mediaOrder":"1","lastUpdated":"5/26/2009 2:40 PM","fileSize":"32346","resolutionX":"207","resolutionY":"356","fileNameFullsize":"3173742_207x356.jpg","fileNameThumbnail":"3173742_100x171.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173742_207x356.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173742_100x171.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173742_207x356.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173742_100x171.jpg","original":{"type":"Original","fileSize":"32346","resolutionX":"207","resolutionY":"356","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173742_207x356.jpg"},"large":{"type":"Large","fileSize":"32346","resolutionX":"207","resolutionY":"356","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173742_207x356.jpg"},"small":{"type":"Small","fileSize":"4367","resolutionX":"100","resolutionY":"171","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173742_100x171.jpg"}},{"mediaID":"3173743","mediaOrder":"2","lastUpdated":"5/26/2009 2:40 PM","fileSize":"38445","resolutionX":"365","resolutionY":"360","fileNameFullsize":"3173743_365x360.jpg","fileNameThumbnail":"3173743_100x98.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173743_365x360.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173743_100x98.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173743_365x360.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173743_100x98.jpg","original":{"type":"Original","fileSize":"38445","resolutionX":"365","resolutionY":"360","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173743_365x360.jpg"},"large":{"type":"Large","fileSize":"38445","resolutionX":"365","resolutionY":"360","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173743_365x360.jpg"},"small":{"type":"Small","fileSize":"2884","resolutionX":"100","resolutionY":"98","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173743_100x98.jpg"}},{"mediaID":"3173744","mediaOrder":"3","lastUpdated":"5/26/2009 2:40 PM","fileSize":"41214","resolutionX":"400","resolutionY":"306","fileNameFullsize":"3173744_400x306.jpg","fileNameThumbnail":"3173744_100x76.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173744_400x306.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173744_100x76.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173744_400x306.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173744_100x76.jpg","original":{"type":"Original","fileSize":"41214","resolutionX":"400","resolutionY":"306","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173744_400x306.jpg"},"large":{"type":"Large","fileSize":"41214","resolutionX":"400","resolutionY":"306","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173744_400x306.jpg"},"small":{"type":"Small","fileSize":"2787","resolutionX":"100","resolutionY":"76","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/1481/1481422/3173744_100x76.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1589647":{"animalID":"1589647","animalOrgID":"1684","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"No","animalDescription":"<div class=\"rgDescription\"><strong>Shadow, male, two years old,&nbsp;corgi mix. Neut. &nbsp;all shots and micro \r\nchipped. Good &nbsp;family dog, house broken, no cats.</strong></div>","animalDescriptionPlain":"Shadow, male, two years old,&nbsp;corgi mix. Neut. &nbsp;all shots and micro \r\nchipped. Good &nbsp;family dog, house broken, no cats.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"92586","animalMicrochipped":"","animalMixedBreed":"","animalName":"Shadow","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"Yes","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Shadow Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/1684/pictures/animals/1589/1589647/3396154_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"3396154","mediaOrder":"1","lastUpdated":"6/30/2009 5:39 PM","fileSize":"28713","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3396154_500x375.jpg","fileNameThumbnail":"3396154_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1684/pictures/animals/1589/1589647/3396154_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1684/pictures/animals/1589/1589647/3396154_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1684/pictures/animals/1589/1589647/3396154_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1684/pictures/animals/1589/1589647/3396154_100x75.jpg","original":{"type":"Original","fileSize":"28713","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1684/pictures/animals/1589/1589647/3396154_500x375.jpg"},"large":{"type":"Large","fileSize":"28713","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1684/pictures/animals/1589/1589647/3396154_500x375.jpg"},"small":{"type":"Small","fileSize":"2414","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1684/pictures/animals/1589/1589647/3396154_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1665547":{"animalID":"1665547","animalOrgID":"1836","animalActivityLevel":"Moderately Active","animalAdoptionFee":"No Adoption Fee... See description","animalAltered":"Yes","animalAvailableDate":"7/29/2009","animalBirthdate":"7/31/2002","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Since coming here, Jasper has decided he only likes a select few dogs, only ones that totally ignore him, he doesn't like to play with other dogs and would prefer a home where there was either an older corgi that ignored him or a home without other dogs. Jasper also hurt his back, he is doing fine now, but will always have to be watch for back issues. It is for this reason we are offering Jasper for no adoption fee, but you must sign a contract and have the ability to pay for future medical expenses. Jasper's owner had to give him up because she was going to boot camp. She was very upset to have to give up her buddy, but knew that it was best for him. Jasper wasn't fond of going to get his vaccinations, but otherwise he has been a really good dog. He likes to chase cats and would prefer a home without them. Don't let Jasper's ears fool you he is all corgi, his ears just never stood up.</div>","animalDescriptionPlain":"Since coming here, Jasper has decided he only likes a select few dogs, only ones that totally ignore him, he doesn't like to play with other dogs and would prefer a home where there was either an older corgi that ignored him or a home without other dogs. Jasper also hurt his back, he is doing fine now, but will always have to be watch for back issues. It is for this reason we are offering Jasper for no adoption fee, but you must sign a contract and have the ability to pay for future medical expenses. Jasper's owner had to give him up because she was going to boot camp. She was very upset to have to give up her buddy, but knew that it was best for him. Jasper wasn't fond of going to get his vaccinations, but otherwise he has been a really good dog. He likes to chase cats and would prefer a home without them. Don't let Jasper's ears fool you he is all corgi, his ears just never stood up.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"Indoor Only","animalKillDate":"","animalKillReason":"","animalLocation":"45503","animalMicrochipped":"No","animalMixedBreed":"","animalName":"Jasper","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"Friendly","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"No","animalOKWithDogs":"Yes","animalOKWithKids":"Yes","animalOwnerExperience":"Breed","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Jasper Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"35.0","animalSizePotential":"0.0","animalSizeUOM":"Pounds","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676192_100x66.jpg","animalUptodate":"Yes","animalUpdatedDate":"12/30/2011 3:03 AM","animalUrl":"http://howellingkennelsrescue.org/animals/detail?AnimalID=1665547","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3676192","mediaOrder":"1","lastUpdated":"8/16/2009 9:40 AM","fileSize":"26625","resolutionX":"500","resolutionY":"331","fileNameFullsize":"3676192_500x331.jpg","fileNameThumbnail":"3676192_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676192_500x331.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676192_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676192_500x331.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676192_100x66.jpg","original":{"type":"Original","fileSize":"26625","resolutionX":"500","resolutionY":"331","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676192_500x331.jpg"},"large":{"type":"Large","fileSize":"26625","resolutionX":"500","resolutionY":"331","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676192_500x331.jpg"},"small":{"type":"Small","fileSize":"2720","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676192_100x66.jpg"}},{"mediaID":"3559930","mediaOrder":"2","lastUpdated":"8/16/2009 9:40 AM","fileSize":"26480","resolutionX":"500","resolutionY":"334","fileNameFullsize":"3559930_500x334.jpg","fileNameThumbnail":"3559930_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3559930_500x334.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3559930_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3559930_500x334.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3559930_100x66.jpg","original":{"type":"Original","fileSize":"26480","resolutionX":"500","resolutionY":"334","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3559930_500x334.jpg"},"large":{"type":"Large","fileSize":"26480","resolutionX":"500","resolutionY":"334","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3559930_500x334.jpg"},"small":{"type":"Small","fileSize":"2401","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3559930_100x66.jpg"}},{"mediaID":"3676193","mediaOrder":"3","lastUpdated":"8/16/2009 9:40 AM","fileSize":"23751","resolutionX":"500","resolutionY":"331","fileNameFullsize":"3676193_500x331.jpg","fileNameThumbnail":"3676193_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676193_500x331.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676193_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676193_500x331.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676193_100x66.jpg","original":{"type":"Original","fileSize":"23751","resolutionX":"500","resolutionY":"331","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676193_500x331.jpg"},"large":{"type":"Large","fileSize":"23751","resolutionX":"500","resolutionY":"331","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676193_500x331.jpg"},"small":{"type":"Small","fileSize":"2553","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676193_100x66.jpg"}},{"mediaID":"3676194","mediaOrder":"4","lastUpdated":"8/16/2009 9:40 AM","fileSize":"63029","resolutionX":"500","resolutionY":"754","fileNameFullsize":"3676194_500x754.jpg","fileNameThumbnail":"3676194_100x150.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676194_500x754.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676194_100x150.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676194_500x754.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676194_100x150.jpg","original":{"type":"Original","fileSize":"63029","resolutionX":"500","resolutionY":"754","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676194_500x754.jpg"},"large":{"type":"Large","fileSize":"63029","resolutionX":"500","resolutionY":"754","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676194_500x754.jpg"},"small":{"type":"Small","fileSize":"4727","resolutionX":"100","resolutionY":"150","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676194_100x150.jpg"}},{"mediaID":"3676195","mediaOrder":"5","lastUpdated":"8/16/2009 9:40 AM","fileSize":"32083","resolutionX":"500","resolutionY":"331","fileNameFullsize":"3676195_500x331.jpg","fileNameThumbnail":"3676195_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676195_500x331.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676195_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676195_500x331.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676195_100x66.jpg","original":{"type":"Original","fileSize":"32083","resolutionX":"500","resolutionY":"331","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676195_500x331.jpg"},"large":{"type":"Large","fileSize":"32083","resolutionX":"500","resolutionY":"331","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676195_500x331.jpg"},"small":{"type":"Small","fileSize":"2796","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1836/pictures/animals/1665/1665547/3676195_100x66.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1676838":{"animalID":"1676838","animalOrgID":"3276","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Bianca is a very fluffy, tri-color, 3 year old female corgi. She is a sweet little dog and she's waiting for her forever home in kennel #3. <br><br>The adoption fee for animals is $60 for cats and $75 for dogs. This fee includes spaying/neutering and a host of vaccinations. All animals over 4 months of age will be spayed or neutered before going home with the adoptive family. For puppies and kittens under 4 months of age, and exotic animals, adoptions can only be made to areas adjacent to the City of Suffolk. These areas include: Chesapeake, Isle of Wight, Southampton, Portsmouth, Newport News, Franklin, Smithfield, Windsor. <br><br></div>","animalDescriptionPlain":"Bianca is a very fluffy, tri-color, 3 year old female corgi. She is a sweet little dog and she's waiting for her forever home in kennel #3. The adoption fee for animals is $60 for cats and $75 for dogs. This fee includes spaying/neutering and a host of vaccinations. All animals over 4 months of age will be spayed or neutered before going home with the adoptive family. For puppies and kittens under 4 months of age, and exotic animals, adoptions can only be made to areas adjacent to the City of Suffolk. These areas include: Chesapeake, Isle of Wight, Southampton, Portsmouth, Newport News, Franklin, Smithfield, Windsor. ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"23435","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Bianca","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Bianca Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1676/1676838/3594969_100x100.jpg","animalUptodate":"","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3594969","mediaOrder":"1","lastUpdated":"8/4/2009 7:57 PM","fileSize":"19809","resolutionX":"350","resolutionY":"350","fileNameFullsize":"3594969_350x350.jpg","fileNameThumbnail":"3594969_100x100.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1676/1676838/3594969_350x350.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1676/1676838/3594969_100x100.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1676/1676838/3594969_350x350.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1676/1676838/3594969_100x100.jpg","original":{"type":"Original","fileSize":"19809","resolutionX":"350","resolutionY":"350","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1676/1676838/3594969_350x350.jpg"},"large":{"type":"Large","fileSize":"19809","resolutionX":"350","resolutionY":"350","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1676/1676838/3594969_350x350.jpg"},"small":{"type":"Small","fileSize":"3275","resolutionX":"100","resolutionY":"100","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1676/1676838/3594969_100x100.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1677051":{"animalID":"1677051","animalOrgID":"3276","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Gidget is a 2 year old orange and white female corgi. She has lots of love to give! She has a cute little waddle when she walks because of her short legs. She is very sweet and loves belly rubs. She is waiting for her forever home in kennel #18.<br><br>The adoption fee for animals is $60 for cats and $75 for dogs. This fee includes spaying/neutering and a host of vaccinations. All animals over 4 months of age will be spayed or neutered before going home with the adoptive family. For puppies and kittens under 4 months of age, and exotic animals, adoptions can only be made to areas adjacent to the City of Suffolk. These areas include: Chesapeake, Isle of Wight, Southampton, Portsmouth, Newport News, Franklin, Smithfield, Windsor. <br><br></div>","animalDescriptionPlain":"Gidget is a 2 year old orange and white female corgi. She has lots of love to give! She has a cute little waddle when she walks because of her short legs. She is very sweet and loves belly rubs. She is waiting for her forever home in kennel #18.The adoption fee for animals is $60 for cats and $75 for dogs. This fee includes spaying/neutering and a host of vaccinations. All animals over 4 months of age will be spayed or neutered before going home with the adoptive family. For puppies and kittens under 4 months of age, and exotic animals, adoptions can only be made to areas adjacent to the City of Suffolk. These areas include: Chesapeake, Isle of Wight, Southampton, Portsmouth, Newport News, Franklin, Smithfield, Windsor. ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"23435","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Gidget","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Gidget Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1677/1677051/3595231_100x66.jpg","animalUptodate":"","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3595231","mediaOrder":"1","lastUpdated":"8/4/2009 8:10 PM","fileSize":"21016","resolutionX":"500","resolutionY":"333","fileNameFullsize":"3595231_500x333.jpg","fileNameThumbnail":"3595231_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1677/1677051/3595231_500x333.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1677/1677051/3595231_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1677/1677051/3595231_500x333.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1677/1677051/3595231_100x66.jpg","original":{"type":"Original","fileSize":"21016","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1677/1677051/3595231_500x333.jpg"},"large":{"type":"Large","fileSize":"21016","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1677/1677051/3595231_500x333.jpg"},"small":{"type":"Small","fileSize":"2435","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3276/pictures/animals/1677/1677051/3595231_100x66.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1763769":{"animalID":"1763769","animalOrgID":"3214","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Gin Tonic is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Gin is so much fun to be around. He likes to play, sleep and eat... as every 8-week old pup does. We want him to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Gin's adoption fee will be $400.</div>","animalDescriptionPlain":"Gin Tonic is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Gin is so much fun to be around. He likes to play, sleep and eat... as every 8-week old pup does. We want him to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Gin's adoption fee will be $400.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Baby","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"12523","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Gin Tonic","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Gin Tonic Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773972_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3773972","mediaOrder":"1","lastUpdated":"8/30/2009 8:44 PM","fileSize":"86151","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3773972_500x375.jpg","fileNameThumbnail":"3773972_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773972_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773972_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773972_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773972_100x75.jpg","original":{"type":"Original","fileSize":"86151","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773972_500x375.jpg"},"large":{"type":"Large","fileSize":"86151","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773972_500x375.jpg"},"small":{"type":"Small","fileSize":"2466","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773972_100x75.jpg"}},{"mediaID":"3773973","mediaOrder":"2","lastUpdated":"8/30/2009 8:44 PM","fileSize":"83133","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3773973_500x375.jpg","fileNameThumbnail":"3773973_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773973_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773973_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773973_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773973_100x75.jpg","original":{"type":"Original","fileSize":"83133","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773973_500x375.jpg"},"large":{"type":"Large","fileSize":"83133","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773973_500x375.jpg"},"small":{"type":"Small","fileSize":"3025","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773973_100x75.jpg"}},{"mediaID":"3773975","mediaOrder":"3","lastUpdated":"8/30/2009 8:44 PM","fileSize":"87157","resolutionX":"375","resolutionY":"500","fileNameFullsize":"3773975_375x500.jpg","fileNameThumbnail":"3773975_100x133.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773975_375x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773975_100x133.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773975_375x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773975_100x133.jpg","original":{"type":"Original","fileSize":"87157","resolutionX":"375","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773975_375x500.jpg"},"large":{"type":"Large","fileSize":"87157","resolutionX":"375","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773975_375x500.jpg"},"small":{"type":"Small","fileSize":"3598","resolutionX":"100","resolutionY":"133","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763769/3773975_100x133.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1763780":{"animalID":"1763780","animalOrgID":"3214","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Grey Goose is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Grey Goose is so much fun to be around. He likes to play, sleep and eat... as every 8-week old pup does. We want him to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Grey's adoption fee will be $400.</div>","animalDescriptionPlain":"Grey Goose is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Grey Goose is so much fun to be around. He likes to play, sleep and eat... as every 8-week old pup does. We want him to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Grey's adoption fee will be $400.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Baby","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"12523","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Grey Goose","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Grey Goose Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[],"animalVideos":[],"animalVideoUrls":[]},"1763791":{"animalID":"1763791","animalOrgID":"3214","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Jack Daniels is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Jack is so much fun to be around. He likes to play, sleep and eat... as every 8-week old pup does. We want him to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Jack's adoption fee will be $400.</div>","animalDescriptionPlain":"Jack Daniels is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Jack is so much fun to be around. He likes to play, sleep and eat... as every 8-week old pup does. We want him to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Jack's adoption fee will be $400.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Baby","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"12523","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Jack Daniels","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Jack Daniels Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[],"animalVideos":[],"animalVideoUrls":[]},"1763798":{"animalID":"1763798","animalOrgID":"3214","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Jim Beam is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Jim is so much fun to be around. He likes to play, sleep and eat... as every 8-week old pup does. We want him to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Jim's adoption fee will be $400.</div>","animalDescriptionPlain":"Jim Beam is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Jim is so much fun to be around. He likes to play, sleep and eat... as every 8-week old pup does. We want him to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Jim's adoption fee will be $400.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Baby","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"12523","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Jim Beam","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Jim Beam Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774045_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3774045","mediaOrder":"1","lastUpdated":"8/30/2009 8:49 PM","fileSize":"100872","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774045_500x375.jpg","fileNameThumbnail":"3774045_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774045_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774045_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774045_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774045_100x75.jpg","original":{"type":"Original","fileSize":"100872","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774045_500x375.jpg"},"large":{"type":"Large","fileSize":"100872","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774045_500x375.jpg"},"small":{"type":"Small","fileSize":"2636","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774045_100x75.jpg"}},{"mediaID":"3774046","mediaOrder":"2","lastUpdated":"8/30/2009 8:49 PM","fileSize":"83467","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774046_500x375.jpg","fileNameThumbnail":"3774046_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774046_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774046_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774046_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774046_100x75.jpg","original":{"type":"Original","fileSize":"83467","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774046_500x375.jpg"},"large":{"type":"Large","fileSize":"83467","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774046_500x375.jpg"},"small":{"type":"Small","fileSize":"2091","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774046_100x75.jpg"}},{"mediaID":"3774050","mediaOrder":"3","lastUpdated":"8/30/2009 8:49 PM","fileSize":"102856","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774050_500x375.jpg","fileNameThumbnail":"3774050_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774050_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774050_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774050_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774050_100x75.jpg","original":{"type":"Original","fileSize":"102856","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774050_500x375.jpg"},"large":{"type":"Large","fileSize":"102856","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774050_500x375.jpg"},"small":{"type":"Small","fileSize":"2550","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763798/3774050_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1763800":{"animalID":"1763800","animalOrgID":"3214","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Johnny Walker is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Johnny is so much fun to be around. He likes to play, sleep and eat... as every 8-week old pup does. We want him to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Johnny's adoption fee will be $400.</div>","animalDescriptionPlain":"Johnny Walker is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Johnny is so much fun to be around. He likes to play, sleep and eat... as every 8-week old pup does. We want him to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Johnny's adoption fee will be $400.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Baby","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"12523","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Johnny Walker","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Johnny Walker Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774051_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3774051","mediaOrder":"1","lastUpdated":"8/30/2009 8:49 PM","fileSize":"104253","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774051_500x375.jpg","fileNameThumbnail":"3774051_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774051_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774051_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774051_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774051_100x75.jpg","original":{"type":"Original","fileSize":"104253","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774051_500x375.jpg"},"large":{"type":"Large","fileSize":"104253","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774051_500x375.jpg"},"small":{"type":"Small","fileSize":"2662","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774051_100x75.jpg"}},{"mediaID":"3774052","mediaOrder":"2","lastUpdated":"8/30/2009 8:49 PM","fileSize":"99352","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774052_500x375.jpg","fileNameThumbnail":"3774052_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774052_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774052_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774052_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774052_100x75.jpg","original":{"type":"Original","fileSize":"99352","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774052_500x375.jpg"},"large":{"type":"Large","fileSize":"99352","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774052_500x375.jpg"},"small":{"type":"Small","fileSize":"2920","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774052_100x75.jpg"}},{"mediaID":"3774053","mediaOrder":"3","lastUpdated":"8/30/2009 8:49 PM","fileSize":"74710","resolutionX":"375","resolutionY":"500","fileNameFullsize":"3774053_375x500.jpg","fileNameThumbnail":"3774053_100x133.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774053_375x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774053_100x133.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774053_375x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774053_100x133.jpg","original":{"type":"Original","fileSize":"74710","resolutionX":"375","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774053_375x500.jpg"},"large":{"type":"Large","fileSize":"74710","resolutionX":"375","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774053_375x500.jpg"},"small":{"type":"Small","fileSize":"3532","resolutionX":"100","resolutionY":"133","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763800/3774053_100x133.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1763836":{"animalID":"1763836","animalOrgID":"3214","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Mai Tai is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Mai Tai is so much fun to be around. She likes to play, sleep and eat... as every 8-week old pup does. We want her to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Mai's adoption fee will be $400.</div>","animalDescriptionPlain":"Mai Tai is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Mai Tai is so much fun to be around. She likes to play, sleep and eat... as every 8-week old pup does. We want her to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Mai's adoption fee will be $400.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Baby","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"12523","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Mai Tai","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Mai Tai Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774150_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3774150","mediaOrder":"1","lastUpdated":"8/30/2009 8:54 PM","fileSize":"94985","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774150_500x375.jpg","fileNameThumbnail":"3774150_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774150_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774150_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774150_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774150_100x75.jpg","original":{"type":"Original","fileSize":"94985","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774150_500x375.jpg"},"large":{"type":"Large","fileSize":"94985","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774150_500x375.jpg"},"small":{"type":"Small","fileSize":"2931","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774150_100x75.jpg"}},{"mediaID":"3774151","mediaOrder":"2","lastUpdated":"8/30/2009 8:54 PM","fileSize":"105688","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774151_500x375.jpg","fileNameThumbnail":"3774151_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774151_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774151_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774151_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774151_100x75.jpg","original":{"type":"Original","fileSize":"105688","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774151_500x375.jpg"},"large":{"type":"Large","fileSize":"105688","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774151_500x375.jpg"},"small":{"type":"Small","fileSize":"2880","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774151_100x75.jpg"}},{"mediaID":"3774152","mediaOrder":"3","lastUpdated":"8/30/2009 8:54 PM","fileSize":"100340","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774152_500x375.jpg","fileNameThumbnail":"3774152_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774152_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774152_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774152_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774152_100x75.jpg","original":{"type":"Original","fileSize":"100340","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774152_500x375.jpg"},"large":{"type":"Large","fileSize":"100340","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774152_500x375.jpg"},"small":{"type":"Small","fileSize":"3024","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763836/3774152_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1763856":{"animalID":"1763856","animalOrgID":"3214","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Mojito is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Mojito is so much fun to be around. He likes to play, sleep and eat... as every 8-week old pup does. We want him to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Mojito's adoption fee will be $400.</div>","animalDescriptionPlain":"Mojito is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Mojito is so much fun to be around. He likes to play, sleep and eat... as every 8-week old pup does. We want him to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Mojito's adoption fee will be $400.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Baby","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"12523","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Mojito","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Mojito Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774216_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3774216","mediaOrder":"1","lastUpdated":"8/30/2009 8:57 PM","fileSize":"104010","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774216_500x375.jpg","fileNameThumbnail":"3774216_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774216_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774216_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774216_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774216_100x75.jpg","original":{"type":"Original","fileSize":"104010","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774216_500x375.jpg"},"large":{"type":"Large","fileSize":"104010","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774216_500x375.jpg"},"small":{"type":"Small","fileSize":"2824","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774216_100x75.jpg"}},{"mediaID":"3774217","mediaOrder":"2","lastUpdated":"8/30/2009 8:57 PM","fileSize":"94724","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774217_500x375.jpg","fileNameThumbnail":"3774217_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774217_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774217_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774217_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774217_100x75.jpg","original":{"type":"Original","fileSize":"94724","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774217_500x375.jpg"},"large":{"type":"Large","fileSize":"94724","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774217_500x375.jpg"},"small":{"type":"Small","fileSize":"3214","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763856/3774217_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1763886":{"animalID":"1763886","animalOrgID":"3214","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Princess Leah is a gorgeous one year old Corgix girl with lots of charme. She is a very calm and relaxed dog and takes a couple of hours to really warm up to a person (hey, you never know, right?) but when she trusts you she will follow you everywhere. Leah's coat is very soft and shiny, and she will be an awesome snuggle companion since she gives kisses and demands rubs. Come and meet this gorgeous girl before somone else falls in love with her.</div>","animalDescriptionPlain":"Princess Leah is a gorgeous one year old Corgix girl with lots of charme. She is a very calm and relaxed dog and takes a couple of hours to really warm up to a person (hey, you never know, right?) but when she trusts you she will follow you everywhere. Leah's coat is very soft and shiny, and she will be an awesome snuggle companion since she gives kisses and demands rubs. Come and meet this gorgeous girl before somone else falls in love with her.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"12523","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Princess Leah","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Princess Leah Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774302_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3774302","mediaOrder":"1","lastUpdated":"8/30/2009 9:00 PM","fileSize":"90268","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774302_500x375.jpg","fileNameThumbnail":"3774302_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774302_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774302_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774302_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774302_100x75.jpg","original":{"type":"Original","fileSize":"90268","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774302_500x375.jpg"},"large":{"type":"Large","fileSize":"90268","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774302_500x375.jpg"},"small":{"type":"Small","fileSize":"2949","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774302_100x75.jpg"}},{"mediaID":"3774303","mediaOrder":"2","lastUpdated":"8/30/2009 9:00 PM","fileSize":"86828","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774303_500x375.jpg","fileNameThumbnail":"3774303_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774303_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774303_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774303_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774303_100x75.jpg","original":{"type":"Original","fileSize":"86828","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774303_500x375.jpg"},"large":{"type":"Large","fileSize":"86828","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774303_500x375.jpg"},"small":{"type":"Small","fileSize":"3463","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774303_100x75.jpg"}},{"mediaID":"3774304","mediaOrder":"3","lastUpdated":"8/30/2009 9:00 PM","fileSize":"89633","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774304_500x375.jpg","fileNameThumbnail":"3774304_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774304_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774304_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774304_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774304_100x75.jpg","original":{"type":"Original","fileSize":"89633","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774304_500x375.jpg"},"large":{"type":"Large","fileSize":"89633","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774304_500x375.jpg"},"small":{"type":"Small","fileSize":"3725","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763886/3774304_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1763941":{"animalID":"1763941","animalOrgID":"3214","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Stoli is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Stoli is so much fun to be around. She likes to play, sleep and eat... as every 8-week old pup does. We want her to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Stoli's adoption fee will be $400.</div>","animalDescriptionPlain":"Stoli is a 8-week old Corgi X puppy. We know from the owners of the mom that she (the mom) is a purebred Pembroke Welsh Corgi and mated with a \"brown dog\". Yup, we love how these \"accidents\" happen and one morning the owner was standing in front of animal control with two vodka boxes full of puppies. Luckily, for us and the pups we got there in time to prevent the puppies from entering the shelter and possibly getting exposed to all kinds of nasty germs. We still would have preferred that mom dog would be inside the house and spayed....\rThe outcome is still super cute and little Stoli is so much fun to be around. She likes to play, sleep and eat... as every 8-week old pup does. We want her to go to a home that understands the needs of a puppy and how much time and training it takes to raise them to be well behaved adult dogs. Stoli's adoption fee will be $400.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Baby","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"12523","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Stoli","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Stoli Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774443_100x75.jpg","animalUptodate":"","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3774443","mediaOrder":"1","lastUpdated":"8/30/2009 9:07 PM","fileSize":"83905","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774443_500x375.jpg","fileNameThumbnail":"3774443_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774443_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774443_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774443_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774443_100x75.jpg","original":{"type":"Original","fileSize":"83905","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774443_500x375.jpg"},"large":{"type":"Large","fileSize":"83905","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774443_500x375.jpg"},"small":{"type":"Small","fileSize":"2585","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774443_100x75.jpg"}},{"mediaID":"3774444","mediaOrder":"2","lastUpdated":"8/30/2009 9:07 PM","fileSize":"77315","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774444_500x375.jpg","fileNameThumbnail":"3774444_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774444_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774444_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774444_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774444_100x75.jpg","original":{"type":"Original","fileSize":"77315","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774444_500x375.jpg"},"large":{"type":"Large","fileSize":"77315","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774444_500x375.jpg"},"small":{"type":"Small","fileSize":"2429","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774444_100x75.jpg"}},{"mediaID":"3774445","mediaOrder":"3","lastUpdated":"8/30/2009 9:07 PM","fileSize":"89128","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774445_500x375.jpg","fileNameThumbnail":"3774445_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774445_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774445_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774445_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774445_100x75.jpg","original":{"type":"Original","fileSize":"89128","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774445_500x375.jpg"},"large":{"type":"Large","fileSize":"89128","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774445_500x375.jpg"},"small":{"type":"Small","fileSize":"2458","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763941/3774445_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1763959":{"animalID":"1763959","animalOrgID":"3214","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Tulow is the cutest thing you have ever seen, we don't know what he is mixed with but we call it adorable!\rHe is about 5 months old, weighs about 30 lbs and still has a little growing to do. Tulow has not been exposed to many things in his short life, but he will adjust in no time. He gets a long with other dogs, loves to explore and play and also enjoys a good belly rub.</div>","animalDescriptionPlain":"Tulow is the cutest thing you have ever seen, we don't know what he is mixed with but we call it adorable!\rHe is about 5 months old, weighs about 30 lbs and still has a little growing to do. Tulow has not been exposed to many things in his short life, but he will adjust in no time. He gets a long with other dogs, loves to explore and play and also enjoys a good belly rub.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Baby","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"12523","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Tulow","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Tulow Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774501_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3774501","mediaOrder":"1","lastUpdated":"8/30/2009 9:10 PM","fileSize":"102621","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774501_500x375.jpg","fileNameThumbnail":"3774501_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774501_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774501_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774501_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774501_100x75.jpg","original":{"type":"Original","fileSize":"102621","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774501_500x375.jpg"},"large":{"type":"Large","fileSize":"102621","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774501_500x375.jpg"},"small":{"type":"Small","fileSize":"4084","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774501_100x75.jpg"}},{"mediaID":"3774502","mediaOrder":"2","lastUpdated":"8/30/2009 9:10 PM","fileSize":"82447","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3774502_500x375.jpg","fileNameThumbnail":"3774502_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774502_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774502_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774502_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774502_100x75.jpg","original":{"type":"Original","fileSize":"82447","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774502_500x375.jpg"},"large":{"type":"Large","fileSize":"82447","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774502_500x375.jpg"},"small":{"type":"Small","fileSize":"3492","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3214/pictures/animals/1763/1763959/3774502_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1767074":{"animalID":"1767074","animalOrgID":"3494","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">ANGELICA IS FINALLY AT HOME -- SHE WAS ADOPTED BY A WONDERFUL FAMILY AND IT WAS LOVE AT FIRST SIGHT!\r<BR><BR>\rTHANK YOU FOR RESCUING THIS SWEET LITTLE SPIRIT!</div>","animalDescriptionPlain":"ANGELICA IS FINALLY AT HOME -- SHE WAS ADOPTED BY A WONDERFUL FAMILY AND IT WAS LOVE AT FIRST SIGHT!\r\rTHANK YOU FOR RESCUING THIS SWEET LITTLE SPIRIT!","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"76108","animalMicrochipped":"","animalMixedBreed":"No","animalName":"ADOPTED: ANGELICA","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"080408","animalSearchString":"ADOPTED: ANGELICA Female Medium 080408 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779920_100x106.jpg","animalUptodate":"","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3779920","mediaOrder":"1","lastUpdated":"8/31/2009 7:57 PM","fileSize":"15151","resolutionX":"283","resolutionY":"300","fileNameFullsize":"3779920_283x300.jpg","fileNameThumbnail":"3779920_100x106.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779920_283x300.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779920_100x106.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779920_283x300.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779920_100x106.jpg","original":{"type":"Original","fileSize":"15151","resolutionX":"283","resolutionY":"300","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779920_283x300.jpg"},"large":{"type":"Large","fileSize":"15151","resolutionX":"283","resolutionY":"300","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779920_283x300.jpg"},"small":{"type":"Small","fileSize":"4881","resolutionX":"100","resolutionY":"106","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779920_100x106.jpg"}},{"mediaID":"3779922","mediaOrder":"2","lastUpdated":"8/31/2009 7:57 PM","fileSize":"15021","resolutionX":"283","resolutionY":"210","fileNameFullsize":"3779922_283x210.jpg","fileNameThumbnail":"3779922_100x74.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779922_283x210.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779922_100x74.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779922_283x210.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779922_100x74.jpg","original":{"type":"Original","fileSize":"15021","resolutionX":"283","resolutionY":"210","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779922_283x210.jpg"},"large":{"type":"Large","fileSize":"15021","resolutionX":"283","resolutionY":"210","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779922_283x210.jpg"},"small":{"type":"Small","fileSize":"3481","resolutionX":"100","resolutionY":"74","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767074/3779922_100x74.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1767294":{"animalID":"1767294","animalOrgID":"3494","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Corgi mix male, under one year! The perfect family dog! He needs a place to call home.</div>","animalDescriptionPlain":"Corgi mix male, under one year! The perfect family dog! He needs a place to call home.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"76108","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Corgi Boy","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Corgi Boy Male Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780461_100x75.jpg","animalUptodate":"","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3780461","mediaOrder":"1","lastUpdated":"8/31/2009 8:26 PM","fileSize":"22152","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3780461_500x375.jpg","fileNameThumbnail":"3780461_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780461_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780461_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780461_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780461_100x75.jpg","original":{"type":"Original","fileSize":"22152","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780461_500x375.jpg"},"large":{"type":"Large","fileSize":"22152","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780461_500x375.jpg"},"small":{"type":"Small","fileSize":"2202","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780461_100x75.jpg"}},{"mediaID":"3780462","mediaOrder":"2","lastUpdated":"8/31/2009 8:26 PM","fileSize":"21673","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3780462_500x375.jpg","fileNameThumbnail":"3780462_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780462_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780462_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780462_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780462_100x75.jpg","original":{"type":"Original","fileSize":"21673","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780462_500x375.jpg"},"large":{"type":"Large","fileSize":"21673","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780462_500x375.jpg"},"small":{"type":"Small","fileSize":"2278","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780462_100x75.jpg"}},{"mediaID":"3780463","mediaOrder":"3","lastUpdated":"8/31/2009 8:26 PM","fileSize":"22992","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3780463_500x375.jpg","fileNameThumbnail":"3780463_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780463_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780463_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780463_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780463_100x75.jpg","original":{"type":"Original","fileSize":"22992","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780463_500x375.jpg"},"large":{"type":"Large","fileSize":"22992","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780463_500x375.jpg"},"small":{"type":"Small","fileSize":"2329","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1767/1767294/3780463_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1768002":{"animalID":"1768002","animalOrgID":"3494","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Tabitha is a 10 month old corgi mix that is fully vaccinated and spayed.Tabitha is great with the dogs in the house and very curious about the cats, although she has not tried to hurt one. She is completely housetrained and kennel trained. Not sure about kids but recommended to not be in a home with super young or rowdy children. Call Kelly 817-320-0399 if you have more questions regarding Tabitha. <BR><BR>See photos of some of our other pets at http://www.flickr.com/photos/37390632@N03/ \r<BR><Fees: <BR>\rAdoption - $25.00 <BR>\rAnnual city license - $12.00 (fee incurred for White Settlement residents only) <BR>\rMicroChip - $20.00 (Lifetime Registration) - An animal with an existing microchip or with a valid physical/medical reason that it cannot be chipped is exempt from the microchipping fee. <BR><BR>\rIf you did not find what you were looking for stop by the local animal shelter for other wonderfully adoptable animals:<BR>\r\rWhite Settlement Animal Shelter <BR>\r8900 Raymond (Behind Las Vegas Trail Post Office) <BR>\r817-246-1043 <BR>\r<BR> \r</div>","animalDescriptionPlain":"Tabitha is a 10 month old corgi mix that is fully vaccinated and spayed.Tabitha is great with the dogs in the house and very curious about the cats, although she has not tried to hurt one. She is completely housetrained and kennel trained. Not sure about kids but recommended to not be in a home with super young or rowdy children. Call Kelly 817-320-0399 if you have more questions regarding Tabitha. See photos of some of our other pets at http://www.flickr.com/photos/37390632@N03/ \r","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"76108","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Tabitha","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"080509","animalSearchString":"Tabitha Female Medium 080509 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782078_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3782078","mediaOrder":"1","lastUpdated":"8/31/2009 10:13 PM","fileSize":"21007","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3782078_500x375.jpg","fileNameThumbnail":"3782078_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782078_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782078_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782078_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782078_100x75.jpg","original":{"type":"Original","fileSize":"21007","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782078_500x375.jpg"},"large":{"type":"Large","fileSize":"21007","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782078_500x375.jpg"},"small":{"type":"Small","fileSize":"2323","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782078_100x75.jpg"}},{"mediaID":"3782079","mediaOrder":"2","lastUpdated":"8/31/2009 10:13 PM","fileSize":"25758","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3782079_500x375.jpg","fileNameThumbnail":"3782079_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782079_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782079_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782079_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782079_100x75.jpg","original":{"type":"Original","fileSize":"25758","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782079_500x375.jpg"},"large":{"type":"Large","fileSize":"25758","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782079_500x375.jpg"},"small":{"type":"Small","fileSize":"2664","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3494/pictures/animals/1768/1768002/3782079_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1770847":{"animalID":"1770847","animalOrgID":"3507","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Chelsea is a very pretty small mixed breed dog we rescued from a high kill shelter. She is sweet and will make a nice pet.\rShe is located with her rescue down in Georgia- she will be transported up to Connecticut when she is adopted. New owners are to meet transporter to pick up new pet!\rPlease email Joy @ animaldefenders@gardonline.org\rShe has saved this dear girl from death at a high kill shelter.</div>","animalDescriptionPlain":"Chelsea is a very pretty small mixed breed dog we rescued from a high kill shelter. She is sweet and will make a nice pet.\rShe is located with her rescue down in Georgia- she will be transported up to Connecticut when she is adopted. New owners are to meet transporter to pick up new pet!\rPlease email Joy @ animaldefenders@gardonline.org\rShe has saved this dear girl from death at a high kill shelter.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"02885","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Chelsea-courtesy l","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Chelsea-courtesy l Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789213_100x88.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3789213","mediaOrder":"1","lastUpdated":"9/1/2009 4:19 PM","fileSize":"10958","resolutionX":"282","resolutionY":"250","fileNameFullsize":"3789213_282x250.jpg","fileNameThumbnail":"3789213_100x88.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789213_282x250.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789213_100x88.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789213_282x250.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789213_100x88.jpg","original":{"type":"Original","fileSize":"10958","resolutionX":"282","resolutionY":"250","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789213_282x250.jpg"},"large":{"type":"Large","fileSize":"10958","resolutionX":"282","resolutionY":"250","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789213_282x250.jpg"},"small":{"type":"Small","fileSize":"2907","resolutionX":"100","resolutionY":"88","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789213_100x88.jpg"}},{"mediaID":"3789215","mediaOrder":"2","lastUpdated":"9/1/2009 4:19 PM","fileSize":"8773","resolutionX":"192","resolutionY":"250","fileNameFullsize":"3789215_192x250.jpg","fileNameThumbnail":"3789215_100x130.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789215_192x250.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789215_100x130.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789215_192x250.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789215_100x130.jpg","original":{"type":"Original","fileSize":"8773","resolutionX":"192","resolutionY":"250","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789215_192x250.jpg"},"large":{"type":"Large","fileSize":"8773","resolutionX":"192","resolutionY":"250","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789215_192x250.jpg"},"small":{"type":"Small","fileSize":"4025","resolutionX":"100","resolutionY":"130","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1770/1770847/3789215_100x130.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1771411":{"animalID":"1771411","animalOrgID":"3507","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Teddy is a about 1 year old and a sweet Corgi mix. He will make an excellent family pet.\rHe is located in GA and will be transported when he is adopted.\remail me for an application or animaldefenders@GARDONLINE.org for more info.</div>","animalDescriptionPlain":"Teddy is a about 1 year old and a sweet Corgi mix. He will make an excellent family pet.\rHe is located in GA and will be transported when he is adopted.\remail me for an application or animaldefenders@GARDONLINE.org for more info.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"02885","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Teddy","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Teddy Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1771/1771411/3790679_100x117.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3790679","mediaOrder":"1","lastUpdated":"9/1/2009 5:13 PM","fileSize":"17146","resolutionX":"212","resolutionY":"250","fileNameFullsize":"3790679_212x250.jpg","fileNameThumbnail":"3790679_100x117.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1771/1771411/3790679_212x250.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1771/1771411/3790679_100x117.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1771/1771411/3790679_212x250.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1771/1771411/3790679_100x117.jpg","original":{"type":"Original","fileSize":"17146","resolutionX":"212","resolutionY":"250","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1771/1771411/3790679_212x250.jpg"},"large":{"type":"Large","fileSize":"17146","resolutionX":"212","resolutionY":"250","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1771/1771411/3790679_212x250.jpg"},"small":{"type":"Small","fileSize":"4133","resolutionX":"100","resolutionY":"117","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3507/pictures/animals/1771/1771411/3790679_100x117.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1778244":{"animalID":"1778244","animalOrgID":"3526","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">This little girl has eyes that will melt your heart. She has a great personality, loves to wag her tail and be with the people she loves. She gets along with other dogs and loves to go for walks. She listens well to commands and truly wants to please. She would like a forever home that will understand her needs and love her for the fun little dog that she is. Please call to meet Miso! \r\r</div>","animalDescriptionPlain":"This little girl has eyes that will melt your heart. She has a great personality, loves to wag her tail and be with the people she loves. She gets along with other dogs and loves to go for walks. She listens well to commands and truly wants to please. She would like a forever home that will understand her needs and love her for the fun little dog that she is. Please call to meet Miso! \r\r","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"H9H 3C4","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Miso","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"No","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Miso Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803813_100x88.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/1/2015 4:07 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3803813","mediaOrder":"1","lastUpdated":"9/2/2009 9:49 PM","fileSize":"21188","resolutionX":"300","resolutionY":"264","fileNameFullsize":"3803813_300x264.jpg","fileNameThumbnail":"3803813_100x88.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803813_300x264.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803813_100x88.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803813_300x264.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803813_100x88.jpg","original":{"type":"Original","fileSize":"21188","resolutionX":"300","resolutionY":"264","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803813_300x264.jpg"},"large":{"type":"Large","fileSize":"21188","resolutionX":"300","resolutionY":"264","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803813_300x264.jpg"},"small":{"type":"Small","fileSize":"3213","resolutionX":"100","resolutionY":"88","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803813_100x88.jpg"}},{"mediaID":"3803814","mediaOrder":"2","lastUpdated":"9/2/2009 9:49 PM","fileSize":"22487","resolutionX":"300","resolutionY":"270","fileNameFullsize":"3803814_300x270.jpg","fileNameThumbnail":"3803814_100x90.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803814_300x270.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803814_100x90.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803814_300x270.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803814_100x90.jpg","original":{"type":"Original","fileSize":"22487","resolutionX":"300","resolutionY":"270","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803814_300x270.jpg"},"large":{"type":"Large","fileSize":"22487","resolutionX":"300","resolutionY":"270","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803814_300x270.jpg"},"small":{"type":"Small","fileSize":"3461","resolutionX":"100","resolutionY":"90","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3526/pictures/animals/1778/1778244/3803814_100x90.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1780313":{"animalID":"1780313","animalOrgID":"3551","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Corey is a 3 to 6 month old Corgi mix. He is tri-colored with distinctive markings. He can be seen in the photographs with is brother, Sam. He is heartworm negative, current on his shots, and is scheduled to be altered. He was found at a garage dump. He is somewhat cautious when you first meet him but warms up quickly to become quite loveable!\r\rSAR ID#: 06-09-005</div>","animalDescriptionPlain":"Corey is a 3 to 6 month old Corgi mix. He is tri-colored with distinctive markings. He can be seen in the photographs with is brother, Sam. He is heartworm negative, current on his shots, and is scheduled to be altered. He was found at a garage dump. He is somewhat cautious when you first meet him but warms up quickly to become quite loveable!\r\rSAR ID#: 06-09-005","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"70706","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Corey","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Corey Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806386_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3806386","mediaOrder":"1","lastUpdated":"9/3/2009 1:54 PM","fileSize":"66879","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3806386_500x375.jpg","fileNameThumbnail":"3806386_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806386_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806386_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806386_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806386_100x75.jpg","original":{"type":"Original","fileSize":"66879","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806386_500x375.jpg"},"large":{"type":"Large","fileSize":"66879","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806386_500x375.jpg"},"small":{"type":"Small","fileSize":"2843","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806386_100x75.jpg"}},{"mediaID":"3806387","mediaOrder":"2","lastUpdated":"9/3/2009 1:54 PM","fileSize":"70638","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3806387_500x375.jpg","fileNameThumbnail":"3806387_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806387_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806387_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806387_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806387_100x75.jpg","original":{"type":"Original","fileSize":"70638","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806387_500x375.jpg"},"large":{"type":"Large","fileSize":"70638","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806387_500x375.jpg"},"small":{"type":"Small","fileSize":"2443","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806387_100x75.jpg"}},{"mediaID":"3806388","mediaOrder":"3","lastUpdated":"9/3/2009 1:54 PM","fileSize":"63342","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3806388_500x375.jpg","fileNameThumbnail":"3806388_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806388_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806388_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806388_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806388_100x75.jpg","original":{"type":"Original","fileSize":"63342","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806388_500x375.jpg"},"large":{"type":"Large","fileSize":"63342","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806388_500x375.jpg"},"small":{"type":"Small","fileSize":"3035","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3551/pictures/animals/1780/1780313/3806388_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1780589":{"animalID":"1780589","animalOrgID":"3553","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Melissa is a sweet puppy that needs a loving home. She gets along with everyone and loves to play\r\rPlease send an email with the NAME OF THE PET you are interested in to lovingarmrescue@aol.com\rPlease indicate if you have experience with this breed. Also include a phone number and email so we can contact you.</div>","animalDescriptionPlain":"Melissa is a sweet puppy that needs a loving home. She gets along with everyone and loves to play\r\rPlease send an email with the NAME OF THE PET you are interested in to lovingarmrescue@aol.com\rPlease indicate if you have experience with this breed. Also include a phone number and email so we can contact you.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Baby","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"48191","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Melissa","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Melissa Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807306_100x66.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3807306","mediaOrder":"1","lastUpdated":"9/3/2009 2:48 PM","fileSize":"49459","resolutionX":"500","resolutionY":"331","fileNameFullsize":"3807306_500x331.jpg","fileNameThumbnail":"3807306_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807306_500x331.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807306_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807306_500x331.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807306_100x66.jpg","original":{"type":"Original","fileSize":"49459","resolutionX":"500","resolutionY":"331","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807306_500x331.jpg"},"large":{"type":"Large","fileSize":"49459","resolutionX":"500","resolutionY":"331","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807306_500x331.jpg"},"small":{"type":"Small","fileSize":"2845","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807306_100x66.jpg"}},{"mediaID":"3807307","mediaOrder":"2","lastUpdated":"9/3/2009 2:48 PM","fileSize":"51379","resolutionX":"500","resolutionY":"385","fileNameFullsize":"3807307_500x385.jpg","fileNameThumbnail":"3807307_100x77.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807307_500x385.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807307_100x77.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807307_500x385.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807307_100x77.jpg","original":{"type":"Original","fileSize":"51379","resolutionX":"500","resolutionY":"385","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807307_500x385.jpg"},"large":{"type":"Large","fileSize":"51379","resolutionX":"500","resolutionY":"385","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807307_500x385.jpg"},"small":{"type":"Small","fileSize":"3015","resolutionX":"100","resolutionY":"77","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807307_100x77.jpg"}},{"mediaID":"3807308","mediaOrder":"3","lastUpdated":"9/3/2009 2:48 PM","fileSize":"63725","resolutionX":"500","resolutionY":"421","fileNameFullsize":"3807308_500x421.jpg","fileNameThumbnail":"3807308_100x84.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807308_500x421.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807308_100x84.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807308_500x421.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807308_100x84.jpg","original":{"type":"Original","fileSize":"63725","resolutionX":"500","resolutionY":"421","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807308_500x421.jpg"},"large":{"type":"Large","fileSize":"63725","resolutionX":"500","resolutionY":"421","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807308_500x421.jpg"},"small":{"type":"Small","fileSize":"3368","resolutionX":"100","resolutionY":"84","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3553/pictures/animals/1780/1780589/3807308_100x84.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1792853":{"animalID":"1792853","animalOrgID":"3555","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">I am a calm and gentle gal who would be a great pet for someone special! I can move to my furever home immediately. Please help me!\r\rI went to a Chicago rescue on July 9th!!</div>","animalDescriptionPlain":"I am a calm and gentle gal who would be a great pet for someone special! I can move to my furever home immediately. Please help me!\r\rI went to a Chicago rescue on July 9th!!","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"62863","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Madonna - SPONSOR","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Madonna - SPONSOR Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832667_100x66.jpg","animalUptodate":"","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3832667","mediaOrder":"1","lastUpdated":"9/7/2009 7:23 PM","fileSize":"141641","resolutionX":"500","resolutionY":"334","fileNameFullsize":"3832667_500x334.jpg","fileNameThumbnail":"3832667_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832667_500x334.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832667_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832667_500x334.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832667_100x66.jpg","original":{"type":"Original","fileSize":"141641","resolutionX":"500","resolutionY":"334","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832667_500x334.jpg"},"large":{"type":"Large","fileSize":"141641","resolutionX":"500","resolutionY":"334","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832667_500x334.jpg"},"small":{"type":"Small","fileSize":"3253","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832667_100x66.jpg"}},{"mediaID":"3832668","mediaOrder":"2","lastUpdated":"9/7/2009 7:23 PM","fileSize":"152558","resolutionX":"500","resolutionY":"335","fileNameFullsize":"3832668_500x335.jpg","fileNameThumbnail":"3832668_100x67.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832668_500x335.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832668_100x67.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832668_500x335.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832668_100x67.jpg","original":{"type":"Original","fileSize":"152558","resolutionX":"500","resolutionY":"335","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832668_500x335.jpg"},"large":{"type":"Large","fileSize":"152558","resolutionX":"500","resolutionY":"335","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832668_500x335.jpg"},"small":{"type":"Small","fileSize":"3348","resolutionX":"100","resolutionY":"67","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832668_100x67.jpg"}},{"mediaID":"3832669","mediaOrder":"3","lastUpdated":"9/7/2009 7:23 PM","fileSize":"125947","resolutionX":"500","resolutionY":"333","fileNameFullsize":"3832669_500x333.jpg","fileNameThumbnail":"3832669_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832669_500x333.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832669_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832669_500x333.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832669_100x66.jpg","original":{"type":"Original","fileSize":"125947","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832669_500x333.jpg"},"large":{"type":"Large","fileSize":"125947","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832669_500x333.jpg"},"small":{"type":"Small","fileSize":"3005","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792853/3832669_100x66.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1792886":{"animalID":"1792886","animalOrgID":"3555","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Great News! I was adopted by a family from a neighboring town! I will be loved and cared for. Thank you Goodman family!</div>","animalDescriptionPlain":"Great News! I was adopted by a family from a neighboring town! I will be loved and cared for. Thank you Goodman family!","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"62863","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Mitzi","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Mitzi Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832724_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3832724","mediaOrder":"1","lastUpdated":"9/7/2009 7:28 PM","fileSize":"37095","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3832724_500x375.jpg","fileNameThumbnail":"3832724_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832724_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832724_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832724_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832724_100x75.jpg","original":{"type":"Original","fileSize":"37095","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832724_500x375.jpg"},"large":{"type":"Large","fileSize":"37095","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832724_500x375.jpg"},"small":{"type":"Small","fileSize":"2656","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832724_100x75.jpg"}},{"mediaID":"3832725","mediaOrder":"2","lastUpdated":"9/7/2009 7:28 PM","fileSize":"34523","resolutionX":"500","resolutionY":"375","fileNameFullsize":"3832725_500x375.jpg","fileNameThumbnail":"3832725_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832725_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832725_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832725_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832725_100x75.jpg","original":{"type":"Original","fileSize":"34523","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832725_500x375.jpg"},"large":{"type":"Large","fileSize":"34523","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832725_500x375.jpg"},"small":{"type":"Small","fileSize":"2475","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3555/pictures/animals/1792/1792886/3832725_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1875382":{"animalID":"1875382","animalOrgID":"993","animalActivityLevel":"Moderately Active","animalAdoptionFee":"","animalAltered":"Yes","animalAvailableDate":"10/6/2009","animalBirthdate":"10/8/2002","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Tan/Yellow/Fawn with Black","animalColorID":"48","animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Meet Snuggle!<BR><BR>She is arriving from a rural breeder and is a happy little&nbsp;girl just looking<BR>for&nbsp;her new forever home. Will it be with you?<BR><BR>Please feel free to fill out an <B>ADOPTION APPLICATION</B> on our main website, <A href=\"http://www.midwestanimalrescue.org/\" mce_href=\"../\"><SPAN style=\"COLOR: rgb(128,0,128)\" mce_style=\"FONT-FAMILY: ; COLOR: #800080\">www.midwestanimalrescue.org</SPAN></A>, by clicking on the Form/Applications link under Website Features.<BR><BR>Thank You!</div>","animalDescriptionPlain":"Meet Snuggle!She is arriving from a rural breeder and is a happy little&nbsp;girl just lookingfor&nbsp;her new forever home. Will it be with you?Please feel free to fill out an ADOPTION APPLICATION on our main website, www.midwestanimalrescue.org, by clicking on the Form/Applications link under Website Features.Thank You!","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"55429","animalMicrochipped":"","animalMixedBreed":"","animalName":"Snuggle","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"Friendly","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"Yes","animalOKWithDogs":"Yes","animalOKWithKids":"Yes","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"M-1602","animalSearchString":"Snuggle Stella Tan/Yellow/Fawn with Black Female Small M-1602 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"14.2","animalSizePotential":"0.0","animalSizeUOM":"Pounds","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/1875/1875382/3998622_100x208.jpg","animalUptodate":"Yes","animalUpdatedDate":"11/4/2010 2:25 PM","animalUrl":"http://www.midwestanimalrescue.org/animals/detail?AnimalID=1875382","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"3998622","mediaOrder":"1","lastUpdated":"10/6/2009 7:54 PM","fileSize":"45267","resolutionX":"152","resolutionY":"317","fileNameFullsize":"3998622_152x317.jpg","fileNameThumbnail":"3998622_100x208.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/1875/1875382/3998622_152x317.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/1875/1875382/3998622_100x208.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/1875/1875382/3998622_152x317.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/1875/1875382/3998622_100x208.jpg","original":{"type":"Original","fileSize":"45267","resolutionX":"152","resolutionY":"317","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/1875/1875382/3998622_152x317.jpg"},"large":{"type":"Large","fileSize":"45267","resolutionX":"152","resolutionY":"317","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/1875/1875382/3998622_152x317.jpg"},"small":{"type":"Small","fileSize":"6512","resolutionX":"100","resolutionY":"208","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/1875/1875382/3998622_100x208.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"1923074":{"animalID":"1923074","animalOrgID":"129","animalActivityLevel":"Moderately Active","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"10/27/2009","animalBirthdate":"10/29/2003","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><DIV class=GBThreadMessageRow_Body_Content>Jillian is a spayed 6 year old purebred Corgi with a very nice pedigree. She at one time was working on her Akc CD (competition in obedience). <BR>She gets along with everyone and everything. <BR>She is from a very busy working ranch and has taken to resting under cars, her owner fears she will be ran over. Now in foster care off the ranch Jillian seems to really dig being a full time house dog. <BR>She loves being petted and going for walks. She has been around kids of all ages,horses,cats and other dogs. Not a jogging buddy, no game of fetch. If she could get in a lap she would be a lap. For her as close to that she can get is to lay her head on your foot for love. <BR></DIV>\r\n<DIV class=GBThreadMessageRow_ReferrerLink></DIV>\r\n<DIV class=GBThreadMessageRow_Body_Attachment>If interested please fill out an applications at <BR><BR>http://pethavenrescue.rescuegroups.org/info/adoption<BR><BR>951-698-0940<BR><BR>We contact all qualified applicants with in 24-48 hr</DIV></div>","animalDescriptionPlain":"Jillian is a spayed 6 year old purebred Corgi with a very nice pedigree. She at one time was working on her Akc CD (competition in obedience). She gets along with everyone and everything. She is from a very busy working ranch and has taken to resting under cars, her owner fears she will be ran over. Now in foster care off the ranch Jillian seems to really dig being a full time house dog. She loves being petted and going for walks. She has been around kids of all ages,horses,cats and other dogs. Not a jogging buddy, no game of fetch. If she could get in a lap she would be a lap. For her as close to that she can get is to lay her head on your foot for love. \r\n\r\nIf interested please fill out an applications at http://pethavenrescue.rescuegroups.org/info/adoption951-698-0940We contact all qualified applicants with in 24-48 hr","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"Indoor and Outdoor","animalKillDate":"","animalKillReason":"","animalLocation":"92563","animalMicrochipped":"","animalMixedBreed":"","animalName":"Jillie","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"Friendly","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"Yes","animalOKWithDogs":"Yes","animalOKWithKids":"Yes","animalOwnerExperience":"None","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Jillie Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"Pounds","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"Yes","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096738_100x66.jpg","animalUptodate":"Yes","animalUpdatedDate":"7/12/2010 8:21 AM","animalUrl":"http://pethavenrescue.rescuegroups.org/animals/detail?AnimalID=1923074","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"4096738","mediaOrder":"1","lastUpdated":"10/27/2009 4:32 PM","fileSize":"57019","resolutionX":"500","resolutionY":"333","fileNameFullsize":"4096738_500x333.jpg","fileNameThumbnail":"4096738_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096738_500x333.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096738_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096738_500x333.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096738_100x66.jpg","original":{"type":"Original","fileSize":"57019","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096738_500x333.jpg"},"large":{"type":"Large","fileSize":"57019","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096738_500x333.jpg"},"small":{"type":"Small","fileSize":"3582","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096738_100x66.jpg"}},{"mediaID":"4096739","mediaOrder":"2","lastUpdated":"10/27/2009 4:32 PM","fileSize":"62796","resolutionX":"500","resolutionY":"333","fileNameFullsize":"4096739_500x333.jpg","fileNameThumbnail":"4096739_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096739_500x333.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096739_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096739_500x333.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096739_100x66.jpg","original":{"type":"Original","fileSize":"62796","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096739_500x333.jpg"},"large":{"type":"Large","fileSize":"62796","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096739_500x333.jpg"},"small":{"type":"Small","fileSize":"4093","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096739_100x66.jpg"}},{"mediaID":"4096740","mediaOrder":"3","lastUpdated":"10/27/2009 4:32 PM","fileSize":"49760","resolutionX":"500","resolutionY":"333","fileNameFullsize":"4096740_500x333.jpg","fileNameThumbnail":"4096740_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096740_500x333.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096740_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096740_500x333.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096740_100x66.jpg","original":{"type":"Original","fileSize":"49760","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096740_500x333.jpg"},"large":{"type":"Large","fileSize":"49760","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096740_500x333.jpg"},"small":{"type":"Small","fileSize":"3360","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/129/pictures/animals/1923/1923074/4096740_100x66.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2007228":{"animalID":"2007228","animalOrgID":"3144","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Floyd is the man! He is a corgi mix and is only about 2 years old. He is does not suffer from height envy, and it doesn't bother him that he can't reach the cabinets. He loves to cuddle and is such an awesome guy. He gets along with most of the dogs we've had him around and he loves to curl up with the neighborhood cats for an afternoon nap in the shade. He all but ignores the horses but I would not have him around ducks, he likes to chase them. He goes to the door to go potty and is learning to sleep in his crate. He likes to chase the water coming out of the hose and loves to go bye bye. He just needs his own forever family.</div>","animalDescriptionPlain":"Floyd is the man! He is a corgi mix and is only about 2 years old. He is does not suffer from height envy, and it doesn't bother him that he can't reach the cabinets. He loves to cuddle and is such an awesome guy. He gets along with most of the dogs we've had him around and he loves to curl up with the neighborhood cats for an afternoon nap in the shade. He all but ignores the horses but I would not have him around ducks, he likes to chase them. He goes to the door to go potty and is learning to sleep in his crate. He likes to chase the water coming out of the hose and loves to go bye bye. He just needs his own forever family.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"85716","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Floyd","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"Floyd","animalSearchString":"Floyd Male Small Floyd Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268522_100x71.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"4268522","mediaOrder":"1","lastUpdated":"11/29/2009 7:34 PM","fileSize":"6186","resolutionX":"300","resolutionY":"214","fileNameFullsize":"4268522_300x214.jpg","fileNameThumbnail":"4268522_100x71.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268522_300x214.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268522_100x71.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268522_300x214.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268522_100x71.jpg","original":{"type":"Original","fileSize":"6186","resolutionX":"300","resolutionY":"214","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268522_300x214.jpg"},"large":{"type":"Large","fileSize":"6186","resolutionX":"300","resolutionY":"214","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268522_300x214.jpg"},"small":{"type":"Small","fileSize":"2590","resolutionX":"100","resolutionY":"71","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268522_100x71.jpg"}},{"mediaID":"4268524","mediaOrder":"2","lastUpdated":"11/29/2009 7:34 PM","fileSize":"5971","resolutionX":"199","resolutionY":"300","fileNameFullsize":"4268524_199x300.jpg","fileNameThumbnail":"4268524_100x150.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268524_199x300.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268524_100x150.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268524_199x300.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268524_100x150.jpg","original":{"type":"Original","fileSize":"5971","resolutionX":"199","resolutionY":"300","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268524_199x300.jpg"},"large":{"type":"Large","fileSize":"5971","resolutionX":"199","resolutionY":"300","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268524_199x300.jpg"},"small":{"type":"Small","fileSize":"4171","resolutionX":"100","resolutionY":"150","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268524_100x150.jpg"}},{"mediaID":"4268525","mediaOrder":"3","lastUpdated":"11/29/2009 7:34 PM","fileSize":"5588","resolutionX":"199","resolutionY":"149","fileNameFullsize":"4268525_199x149.jpg","fileNameThumbnail":"4268525_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268525_199x149.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268525_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268525_199x149.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268525_100x75.jpg","original":{"type":"Original","fileSize":"5588","resolutionX":"199","resolutionY":"149","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268525_199x149.jpg"},"large":{"type":"Large","fileSize":"5588","resolutionX":"199","resolutionY":"149","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268525_199x149.jpg"},"small":{"type":"Small","fileSize":"2326","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3144/pictures/animals/2007/2007228/4268525_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2020402":{"animalID":"2020402","animalOrgID":"225","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Tricolor (Tan/Brown & Black & White)","animalColorID":"37","animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Hello, my name is Benzo. I am a 3 1/2 year old male purbred Welsh Corgi. I am Tri-color. I am crate trained and house trained and I love to be the center of attention. I do not get along with cats and I have not been around small children. I am ~37lbs and I need a new home.\r\n</div>","animalDescriptionPlain":"Hello, my name is Benzo. I am a 3 1/2 year old male purbred Welsh Corgi. I am Tri-color. I am crate trained and house trained and I love to be the center of attention. I do not get along with cats and I have not been around small children. I am ~37lbs and I need a new home.\r\n","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"80907","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Benzo","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"No","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Benzo Tricolor (Tan/Brown & Black & White) Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"","animalUptodate":"","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[],"animalVideos":[],"animalVideoUrls":[]},"204895":{"animalID":"204895","animalOrgID":"944","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Hi, I am about 1 years old and full love and energy. I am so happy and love everyone, do fine with other dogs and cats. I love to play and need a good loving home. My adoption fee is $35.00, that will get me fixed and my rabies shot. Please come take me home. I am housetrained.</div>","animalDescriptionPlain":"Hi, I am about 1 years old and full love and energy. I am so happy and love everyone, do fine with other dogs and cats. I love to play and need a good loving home. My adoption fee is $35.00, that will get me fixed and my rabies shot. Please come take me home. I am housetrained.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"73008","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Scratchy","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Scratchy Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317980_100x75.jpg","animalUptodate":"","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"317980","mediaOrder":"1","lastUpdated":"8/9/2007 5:50 PM","fileSize":"14320","resolutionX":"500","resolutionY":"375","fileNameFullsize":"317980_500x375.jpg","fileNameThumbnail":"317980_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317980_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317980_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317980_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317980_100x75.jpg","original":{"type":"Original","fileSize":"14320","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317980_500x375.jpg"},"large":{"type":"Large","fileSize":"14320","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317980_500x375.jpg"},"small":{"type":"Small","fileSize":"1900","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317980_100x75.jpg"}},{"mediaID":"317981","mediaOrder":"2","lastUpdated":"8/9/2007 5:50 PM","fileSize":"15440","resolutionX":"500","resolutionY":"375","fileNameFullsize":"317981_500x375.jpg","fileNameThumbnail":"317981_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317981_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317981_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317981_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317981_100x75.jpg","original":{"type":"Original","fileSize":"15440","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317981_500x375.jpg"},"large":{"type":"Large","fileSize":"15440","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317981_500x375.jpg"},"small":{"type":"Small","fileSize":"2089","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317981_100x75.jpg"}},{"mediaID":"317982","mediaOrder":"3","lastUpdated":"8/9/2007 5:50 PM","fileSize":"26085","resolutionX":"500","resolutionY":"375","fileNameFullsize":"317982_500x375.jpg","fileNameThumbnail":"317982_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317982_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317982_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317982_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317982_100x75.jpg","original":{"type":"Original","fileSize":"26085","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317982_500x375.jpg"},"large":{"type":"Large","fileSize":"26085","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317982_500x375.jpg"},"small":{"type":"Small","fileSize":"2314","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204895/317982_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2049445":{"animalID":"2049445","animalOrgID":"3632","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><DIV class=photocaption_text>12-09-09: I am a male Corgi around 3-4 years old. I am up to date on my vaccinations.</DIV></div>","animalDescriptionPlain":"12-09-09: I am a male Corgi around 3-4 years old. I am up to date on my vaccinations.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"72401","animalMicrochipped":"","animalMixedBreed":"","animalName":"Corgi 4yrs","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Corgi 4yrs Male Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2049/2049445/4351843_100x133.jpg","animalUptodate":"Yes","animalUpdatedDate":"7/2/2014 1:48 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"wanndat@fastdata.net","fosterFirstname":"Wannda","fosterLastname":"","fosterName":"Wannda","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"4351843","mediaOrder":"1","lastUpdated":"12/16/2009 9:28 AM","fileSize":"37875","resolutionX":"453","resolutionY":"604","fileNameFullsize":"4351843_453x604.jpg","fileNameThumbnail":"4351843_100x133.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2049/2049445/4351843_453x604.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2049/2049445/4351843_100x133.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2049/2049445/4351843_453x604.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2049/2049445/4351843_100x133.jpg","original":{"type":"Original","fileSize":"37875","resolutionX":"453","resolutionY":"604","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2049/2049445/4351843_453x604.jpg"},"large":{"type":"Large","fileSize":"37875","resolutionX":"453","resolutionY":"604","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2049/2049445/4351843_453x604.jpg"},"small":{"type":"Small","fileSize":"2941","resolutionX":"100","resolutionY":"133","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2049/2049445/4351843_100x133.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"204960":{"animalID":"204960","animalOrgID":"944","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">I am about 2 and have just been tossed out on the street. I am very sweet and lay down when you try and pet me, I should get over that as soon as I trust you. I do fine with other dogs and as far as anyone can tell I am housetrained. I am current on my shots and have been wormed. I love to go on walks and do good on a leash. My adoption fee is $55.00, that will get me fixed and my rabies as soon as I have a new family to love me. Please come take me home.\r \r \r I was adopted to a wonderful home in Stroud. Thank you to my new mom, and grandparents.</div>","animalDescriptionPlain":"I am about 2 and have just been tossed out on the street. I am very sweet and lay down when you try and pet me, I should get over that as soon as I trust you. I do fine with other dogs and as far as anyone can tell I am housetrained. I am current on my shots and have been wormed. I love to go on walks and do good on a leash. My adoption fee is $55.00, that will get me fixed and my rabies as soon as I have a new family to love me. Please come take me home.\r \r \r I was adopted to a wonderful home in Stroud. Thank you to my new mom, and grandparents.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"73008","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Vici","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Vici Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318085_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"318085","mediaOrder":"1","lastUpdated":"8/9/2007 5:50 PM","fileSize":"18686","resolutionX":"500","resolutionY":"375","fileNameFullsize":"318085_500x375.jpg","fileNameThumbnail":"318085_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318085_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318085_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318085_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318085_100x75.jpg","original":{"type":"Original","fileSize":"18686","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318085_500x375.jpg"},"large":{"type":"Large","fileSize":"18686","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318085_500x375.jpg"},"small":{"type":"Small","fileSize":"2430","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318085_100x75.jpg"}},{"mediaID":"318086","mediaOrder":"2","lastUpdated":"8/9/2007 5:50 PM","fileSize":"26450","resolutionX":"500","resolutionY":"375","fileNameFullsize":"318086_500x375.jpg","fileNameThumbnail":"318086_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318086_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318086_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318086_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318086_100x75.jpg","original":{"type":"Original","fileSize":"26450","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318086_500x375.jpg"},"large":{"type":"Large","fileSize":"26450","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318086_500x375.jpg"},"small":{"type":"Small","fileSize":"2881","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/944/pictures/animals/204/204960/318086_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2114711":{"animalID":"2114711","animalOrgID":"3936","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">This girl is going to make some lucky family very happy! She is sooooo sweet! An AKC-registered Cardigan Welsh Corgi, about 1½ years old, she has recently given birth to an adorable puppy. She and her baby were turned in to the animal shelter by her owners, but she is undaunted and ready to find someone who will return her love and loyalty. She is a very good mom to her pup, which is not yet weaned. She will be spayed before adoption.</div>","animalDescriptionPlain":"This girl is going to make some lucky family very happy! She is sooooo sweet! An AKC-registered Cardigan Welsh Corgi, about 1½ years old, she has recently given birth to an adorable puppy. She and her baby were turned in to the animal shelter by her owners, but she is undaunted and ready to find someone who will return her love and loyalty. She is a very good mom to her pup, which is not yet weaned. She will be spayed before adoption.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"37830","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Thelma","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Thelma Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[],"animalVideos":[],"animalVideoUrls":[]},"2114771":{"animalID":"2114771","animalOrgID":"3936","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"Yes","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Fallon is a Corgi, about two years old. She does fine with other dogs, is heartworm negative, and, like all SARG animals, has been spayed.</div>","animalDescriptionPlain":"Fallon is a Corgi, about two years old. She does fine with other dogs, is heartworm negative, and, like all SARG animals, has been spayed.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"37830","animalMicrochipped":"","animalMixedBreed":"","animalName":"Fallon","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Fallon Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[],"animalVideos":[],"animalVideoUrls":[]},"2119114":{"animalID":"2119114","animalOrgID":"3238","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><B><FONT COLOR=\"FF0000\"><br>ADOPTED!!<p></FONT></B>\n\nPlease consider opening your heart to a senior dog!!<p>\n\n<B><FONT COLOR=\"9400D3\"> Jeffrey is a 14 year old Corgi. His owner had to go into Hospice care and was no longer able to care for him. He is a very sweet boy and would love to get back into a home of his own very soon. He still loves to run and play. His teeth are in great shape. <p>\n\n\n\n\n\n</FONT></B><p><B><FONT COLOR=\"228B22 \">MEDICAL INFO: </B> <br>\n\nThe following has been done for this dog...<br>\n\n- Basic Exam by Veterinarian<br>\n\n- Spayed or Neutered<br>\n\n- Heartworm Tested (NEGATIVE)<br>\n\n- Placed on heartworm preventive<br>\n\n- Geriatric Bloodwork<br>\n\n- Microchipped<br>\n\n- Intestinal Parasite Exam and medication<br>\n\n- Vaccinations<br>\n\n- Placed on Advantage or Frontline for Fleas / Ticks<br>\n\n- Dental, if needed<br>\n\n</FONT><p>\n\n<B><FONT COLOR=\"0000FF\">ADOPTION DONATION: </FONT></B><br><B>$150</B><p>\n\nThis adoption donation helps to cover the vet expenses for this dog including a 6 month supply of heartworm preventive which is dispensed at the initial vet visit and then goes with the dog at adoption. All vet records will be provided to adopter along with a single dose of advantage / frontline.\n\n\n\n<FONT COLOR=\"FF0000\"><p>If you are interested in adopting this dog, <p>1. Review our <a target=\"_blank\" href=\" http://www.petfinder.com/shelters/caninecastaways.html#PROCEDURES\"> <B>ADOPTION PROCEDURES, </a> </B><p>2. Review our <a target=\"_blank\" href=\" http://www.caninecastaways.org/AdoptionContract.doc\"><B> ADOPTION CONTRACT,</a></B> <p>3. Complete our <a target=\"_blank\" href=\"http://www.caninecastaways.org/application.htm\"><B>ADOPTION APPLICATION.</B></a> <p>If you are unable to adopt at this time, there are other ways to help. Check out our <a target=\"_blank\" href=\" http://www.caninecastaways.org/help.htm#2t\"> <B>HOW YOU CAN HELP </a></B>section for more details! <p><a target=\"_blank\" href=\"http://www.petfinder.com/shelters/caninecastaways.html#CAREFUL\"><br><B>BE CAREFUL WHEN ADOPTING A PET!!</B> </a> Be sure to review the important questions to ask any rescue or shelter before you adopt a pet.</a><br></FONT></B></div>","animalDescriptionPlain":"ADOPTED!!\n\nPlease consider opening your heart to a senior dog!!\n\n Jeffrey is a 14 year old Corgi. His owner had to go into Hospice care and was no longer able to care for him. He is a very sweet boy and would love to get back into a home of his own very soon. He still loves to run and play. His teeth are in great shape. \n\n\n\n\n\nMEDICAL INFO: \n\nThe following has been done for this dog...\n\n- Basic Exam by Veterinarian\n\n- Spayed or Neutered\n\n- Heartworm Tested (NEGATIVE)\n\n- Placed on heartworm preventive\n\n- Geriatric Bloodwork\n\n- Microchipped\n\n- Intestinal Parasite Exam and medication\n\n- Vaccinations\n\n- Placed on Advantage or Frontline for Fleas / Ticks\n\n- Dental, if needed\n\n\n\nADOPTION DONATION: $150\n\nThis adoption donation helps to cover the vet expenses for this dog including a 6 month supply of heartworm preventive which is dispensed at the initial vet visit and then goes with the dog at adoption. All vet records will be provided to adopter along with a single dose of advantage / frontline.\n\n\n\nIf you are interested in adopting this dog, 1. Review our ADOPTION PROCEDURES, 2. Review our ADOPTION CONTRACT, 3. Complete our ADOPTION APPLICATION. If you are unable to adopt at this time, there are other ways to help. Check out our HOW YOU CAN HELP section for more details! BE CAREFUL WHEN ADOPTING A PET!! Be sure to review the important questions to ask any rescue or shelter before you adopt a pet.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Senior","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"34265","animalMicrochipped":"","animalMixedBreed":"No","animalName":"ADOPTED - Jeffrey","animalSpecialneeds":"Yes","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"ADOPTED - Jeffrey Male Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497549_100x140.jpg","animalUptodate":"Yes","animalUpdatedDate":"8/2/2011 2:27 PM","animalUrl":"http://caninecastaways.rescuegroups.org/animals/detail?AnimalID=2119114","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"4497549","mediaOrder":"1","lastUpdated":"1/14/2010 10:29 AM","fileSize":"22611","resolutionX":"355","resolutionY":"500","fileNameFullsize":"4497549_355x500.jpg","fileNameThumbnail":"4497549_100x140.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497549_355x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497549_100x140.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497549_355x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497549_100x140.jpg","original":{"type":"Original","fileSize":"22611","resolutionX":"355","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497549_355x500.jpg"},"large":{"type":"Large","fileSize":"22611","resolutionX":"355","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497549_355x500.jpg"},"small":{"type":"Small","fileSize":"3687","resolutionX":"100","resolutionY":"140","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497549_100x140.jpg"}},{"mediaID":"4497550","mediaOrder":"2","lastUpdated":"1/14/2010 10:29 AM","fileSize":"17394","resolutionX":"355","resolutionY":"261","fileNameFullsize":"4497550_355x261.jpg","fileNameThumbnail":"4497550_100x73.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497550_355x261.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497550_100x73.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497550_355x261.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497550_100x73.jpg","original":{"type":"Original","fileSize":"17394","resolutionX":"355","resolutionY":"261","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497550_355x261.jpg"},"large":{"type":"Large","fileSize":"17394","resolutionX":"355","resolutionY":"261","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497550_355x261.jpg"},"small":{"type":"Small","fileSize":"2801","resolutionX":"100","resolutionY":"73","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497550_100x73.jpg"}},{"mediaID":"4497551","mediaOrder":"3","lastUpdated":"1/14/2010 10:29 AM","fileSize":"38128","resolutionX":"355","resolutionY":"495","fileNameFullsize":"4497551_355x495.jpg","fileNameThumbnail":"4497551_100x139.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497551_355x495.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497551_100x139.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497551_355x495.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497551_100x139.jpg","original":{"type":"Original","fileSize":"38128","resolutionX":"355","resolutionY":"495","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497551_355x495.jpg"},"large":{"type":"Large","fileSize":"38128","resolutionX":"355","resolutionY":"495","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497551_355x495.jpg"},"small":{"type":"Small","fileSize":"5396","resolutionX":"100","resolutionY":"139","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119114/4497551_100x139.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2119695":{"animalID":"2119695","animalOrgID":"3238","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><B><FONT COLOR=\"FF0000\"><br>ADOPTED!!<p></FONT></B>\n\n<B><FONT COLOR=\"9400D3\"> Hi there! My name is Lickety (as in Lickety Split). My short legs can really move me fast!! My foster dad says that I look like a cartoon character when I leap off the deck & by-pass all three steps & fly through the air on my way to the backyard to play!!<p>\n\n\n\n \n\n\n\nI am a Corgi mix; My age is guessed to be around 1 years old. I weigh 23 lbs and I am a very smart little guy who knows how to sit and stay down when told (as I tend to have springs in my legs). I am a very fast learner! I am almost house broken & I’m learning to stay in a crate when no one is home & at night time. <p>\n\nI live with another big dog & 3 cats & I get along pretty well with all of them. I play fetch with bouncy balls & love to play with squeaky toys and chew on rawhide bones too. \n\n<p>\n\n My foster parents clipped my nails this week & I sat quietly and patiently while they did it! No fussin’ from me! They really praised me for being so good!\n\n<p>\n\n \n\n\n\nI like having something of my foster mom’s next to me when I am sleeping, so I will carefully pick up her shoe or flip flop and lay it next to me before I take a nap. I don’t chew on it; I just want something of hers close by!! \n\n<p>\n\n \n\n\n\nI would make a wonderful pet and would love a nice home & family to go to. Will you be the one?\n\n\n\n <p>\n\n</FONT></B><p><B><FONT COLOR=\"228B22 \">MEDICAL INFO: </B> <p>\n\nThe following has been or will be done for this dog...<br>\n\n- Basic Exam by Veterinarian<br>\n\n- Spayed or Neutered<br>\n\n- Heartworm Tested <br>\n\n- Placed on heartworm preventive<br>\n\n- Basic Bloodwork<br>\n\n- Microchipped<br>\n\n- Intestinal Parasite Exam and medication<br>\n\n- Vaccinations<br>\n\n- Placed on Flea preventive<br>\n\n\n\n</FONT><p>\n\n<B><FONT COLOR=\"0000FF\">ADOPTION DONATION: </FONT></B><B>$225</B><p>\n\nThis adoption donation helps to cover the vet expenses for this dog including heartworm preventive which is dispensed at the initial vet visit and then goes with the dog at adoption. All vet records will be provided to adopter.\n\n<FONT COLOR=\"FF0000\"><p>If you are interested in adopting this dog, <p>1. Review our <a target=\"_blank\" href=\" http://www.petfinder.com/shelters/caninecastaways.html#PROCEDURES\"> <B>ADOPTION PROCEDURES, </a> </B><p>2. Review our <a target=\"_blank\" href=\" http://www.caninecastaways.org/AdoptionContract.doc\"><B> ADOPTION CONTRACT,</a></B> <p>3. Complete our <a target=\"_blank\" href=\"http://www.caninecastaways.org/application.htm\"><B>ADOPTION APPLICATION.</B></a> <p>If you are unable to adopt at this time, there are other ways to help. Check out our <a target=\"_blank\" href=\" http://www.caninecastaways.org/help.htm#2t\"> <B>HOW YOU CAN HELP </a></B>section for more details! <p><a target=\"_blank\" href=\"http://www.petfinder.com/shelters/caninecastaways.html#CAREFUL\"><B>BE CAREFUL WHEN ADOPTING A PET!!</B> </a> Be sure to review the important questions to ask any rescue or shelter before you adopt a pet.</a></FONT></B></div>","animalDescriptionPlain":"ADOPTED!!\n\n Hi there! My name is Lickety (as in Lickety Split). My short legs can really move me fast!! My foster dad says that I look like a cartoon character when I leap off the deck & by-pass all three steps & fly through the air on my way to the backyard to play!!\n\n\n\n \n\n\n\nI am a Corgi mix; My age is guessed to be around 1 years old. I weigh 23 lbs and I am a very smart little guy who knows how to sit and stay down when told (as I tend to have springs in my legs). I am a very fast learner! I am almost house broken & I’m learning to stay in a crate when no one is home & at night time. \n\nI live with another big dog & 3 cats & I get along pretty well with all of them. I play fetch with bouncy balls & love to play with squeaky toys and chew on rawhide bones too. \n\n\n\n My foster parents clipped my nails this week & I sat quietly and patiently while they did it! No fussin’ from me! They really praised me for being so good!\n\n\n\n \n\n\n\nI like having something of my foster mom’s next to me when I am sleeping, so I will carefully pick up her shoe or flip flop and lay it next to me before I take a nap. I don’t chew on it; I just want something of hers close by!! \n\n\n\n \n\n\n\nI would make a wonderful pet and would love a nice home & family to go to. Will you be the one?\n\n\n\n \n\nMEDICAL INFO: \n\nThe following has been or will be done for this dog...\n\n- Basic Exam by Veterinarian\n\n- Spayed or Neutered\n\n- Heartworm Tested \n\n- Placed on heartworm preventive\n\n- Basic Bloodwork\n\n- Microchipped\n\n- Intestinal Parasite Exam and medication\n\n- Vaccinations\n\n- Placed on Flea preventive\n\n\n\n\n\nADOPTION DONATION: $225\n\nThis adoption donation helps to cover the vet expenses for this dog including heartworm preventive which is dispensed at the initial vet visit and then goes with the dog at adoption. All vet records will be provided to adopter.\n\nIf you are interested in adopting this dog, 1. Review our ADOPTION PROCEDURES, 2. Review our ADOPTION CONTRACT, 3. Complete our ADOPTION APPLICATION. If you are unable to adopt at this time, there are other ways to help. Check out our HOW YOU CAN HELP section for more details! BE CAREFUL WHEN ADOPTING A PET!! Be sure to review the important questions to ask any rescue or shelter before you adopt a pet.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"34265","animalMicrochipped":"","animalMixedBreed":"No","animalName":"ADOPTED - Lickety","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"ADOPTED - Lickety Male Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498568_100x112.jpg","animalUptodate":"Yes","animalUpdatedDate":"8/2/2011 2:27 PM","animalUrl":"http://caninecastaways.rescuegroups.org/animals/detail?AnimalID=2119695","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"4498568","mediaOrder":"1","lastUpdated":"1/14/2010 11:46 AM","fileSize":"46203","resolutionX":"417","resolutionY":"469","fileNameFullsize":"4498568_417x469.jpg","fileNameThumbnail":"4498568_100x112.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498568_417x469.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498568_100x112.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498568_417x469.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498568_100x112.jpg","original":{"type":"Original","fileSize":"46203","resolutionX":"417","resolutionY":"469","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498568_417x469.jpg"},"large":{"type":"Large","fileSize":"46203","resolutionX":"417","resolutionY":"469","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498568_417x469.jpg"},"small":{"type":"Small","fileSize":"3247","resolutionX":"100","resolutionY":"112","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498568_100x112.jpg"}},{"mediaID":"4498569","mediaOrder":"2","lastUpdated":"1/14/2010 11:46 AM","fileSize":"66995","resolutionX":"393","resolutionY":"324","fileNameFullsize":"4498569_393x324.jpg","fileNameThumbnail":"4498569_100x82.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498569_393x324.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498569_100x82.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498569_393x324.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498569_100x82.jpg","original":{"type":"Original","fileSize":"66995","resolutionX":"393","resolutionY":"324","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498569_393x324.jpg"},"large":{"type":"Large","fileSize":"66995","resolutionX":"393","resolutionY":"324","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498569_393x324.jpg"},"small":{"type":"Small","fileSize":"4018","resolutionX":"100","resolutionY":"82","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498569_100x82.jpg"}},{"mediaID":"4498570","mediaOrder":"3","lastUpdated":"1/14/2010 11:46 AM","fileSize":"28771","resolutionX":"393","resolutionY":"409","fileNameFullsize":"4498570_393x409.jpg","fileNameThumbnail":"4498570_100x104.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498570_393x409.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498570_100x104.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498570_393x409.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498570_100x104.jpg","original":{"type":"Original","fileSize":"28771","resolutionX":"393","resolutionY":"409","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498570_393x409.jpg"},"large":{"type":"Large","fileSize":"28771","resolutionX":"393","resolutionY":"409","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498570_393x409.jpg"},"small":{"type":"Small","fileSize":"3899","resolutionX":"100","resolutionY":"104","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3238/pictures/animals/2119/2119695/4498570_100x104.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2126058":{"animalID":"2126058","animalOrgID":"3879","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><div>Lizzy is an adorable 3-4 month old Corgi puppy. She is a very laid back and sweet puppy. She has a ton of love to offer and she is absolutely adorable!!!<br />\r\n<br />\r\nLizzy is living with a foster family which includes other dogs, and children. She is doing wonderfully with everyone. She is also well on her way to being housebroken. She is crate trained as well.<br />\r\n<br />\r\nLizzy's big brown eyes will draw you in and it will be love at first sight. If you think Lizzy might be the perfect family member for you, please call 317-718-5174 or email: heart4dogrescue@yahoo.com. <br />\r\n<br />\r\nBefore Lizzy goes home, she will be spayed, vaccinated, and microchipped. She is wormed, and heartworm negative.<br />\r\n<br />\r\n***Heart For Dog Rescue is partnered with the Noblesville Petsmart and has our dogs there from 12noon to 3pm every Saturday. Please contact us to see if the dog you are interested in meeting will be there!***</div></div>","animalDescriptionPlain":"Lizzy is an adorable 3-4 month old Corgi puppy. She is a very laid back and sweet puppy. She has a ton of love to offer and she is absolutely adorable!!!\r\n\r\nLizzy is living with a foster family which includes other dogs, and children. She is doing wonderfully with everyone. She is also well on her way to being housebroken. She is crate trained as well.\r\n\r\nLizzy's big brown eyes will draw you in and it will be love at first sight. If you think Lizzy might be the perfect family member for you, please call 317-718-5174 or email: heart4dogrescue@yahoo.com. \r\n\r\nBefore Lizzy goes home, she will be spayed, vaccinated, and microchipped. She is wormed, and heartworm negative.\r\n\r\n***Heart For Dog Rescue is partnered with the Noblesville Petsmart and has our dogs there from 12noon to 3pm every Saturday. Please contact us to see if the dog you are interested in meeting will be there!***","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Baby","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"46122","animalMicrochipped":"","animalMixedBreed":"","animalName":"Lizzy","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Lizzy A135508 Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"Pounds","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"Yes","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3879/pictures/animals/2126/2126058/4511475_100x138.jpg","animalUptodate":"Yes","animalUpdatedDate":"12/6/2011 9:48 AM","animalUrl":"http://heartfordogrescue.org/animals/detail?AnimalID=2126058","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"4511475","mediaOrder":"1","lastUpdated":"1/15/2010 4:01 PM","fileSize":"31952","resolutionX":"258","resolutionY":"357","fileNameFullsize":"4511475_258x357.jpg","fileNameThumbnail":"4511475_100x138.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3879/pictures/animals/2126/2126058/4511475_258x357.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3879/pictures/animals/2126/2126058/4511475_100x138.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3879/pictures/animals/2126/2126058/4511475_258x357.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3879/pictures/animals/2126/2126058/4511475_100x138.jpg","original":{"type":"Original","fileSize":"31952","resolutionX":"258","resolutionY":"357","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3879/pictures/animals/2126/2126058/4511475_258x357.jpg"},"large":{"type":"Large","fileSize":"31952","resolutionX":"258","resolutionY":"357","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3879/pictures/animals/2126/2126058/4511475_258x357.jpg"},"small":{"type":"Small","fileSize":"4981","resolutionX":"100","resolutionY":"138","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3879/pictures/animals/2126/2126058/4511475_100x138.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2126085":{"animalID":"2126085","animalOrgID":"3632","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">01-15-10: My name is Squirt, I am a 5 month old male Corgi. I am up to date on my vaccinations.</div>","animalDescriptionPlain":"01-15-10: My name is Squirt, I am a 5 month old male Corgi. I am up to date on my vaccinations.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Baby","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"72401","animalMicrochipped":"","animalMixedBreed":"","animalName":"Squirt","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Squirt Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511548_100x73.jpg","animalUptodate":"Yes","animalUpdatedDate":"7/2/2014 1:48 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"wanndat@fastdata.net","fosterFirstname":"Wannda","fosterLastname":"","fosterName":"Wannda","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"4511548","mediaOrder":"1","lastUpdated":"1/15/2010 4:13 PM","fileSize":"57427","resolutionX":"500","resolutionY":"365","fileNameFullsize":"4511548_500x365.jpg","fileNameThumbnail":"4511548_100x73.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511548_500x365.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511548_100x73.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511548_500x365.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511548_100x73.jpg","original":{"type":"Original","fileSize":"57427","resolutionX":"500","resolutionY":"365","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511548_500x365.jpg"},"large":{"type":"Large","fileSize":"57427","resolutionX":"500","resolutionY":"365","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511548_500x365.jpg"},"small":{"type":"Small","fileSize":"4012","resolutionX":"100","resolutionY":"73","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511548_100x73.jpg"}},{"mediaID":"4511549","mediaOrder":"2","lastUpdated":"1/15/2010 4:13 PM","fileSize":"63849","resolutionX":"500","resolutionY":"393","fileNameFullsize":"4511549_500x393.jpg","fileNameThumbnail":"4511549_100x78.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511549_500x393.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511549_100x78.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511549_500x393.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511549_100x78.jpg","original":{"type":"Original","fileSize":"63849","resolutionX":"500","resolutionY":"393","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511549_500x393.jpg"},"large":{"type":"Large","fileSize":"63849","resolutionX":"500","resolutionY":"393","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511549_500x393.jpg"},"small":{"type":"Small","fileSize":"4272","resolutionX":"100","resolutionY":"78","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4511549_100x78.jpg"}},{"mediaID":"4526363","mediaOrder":"3","lastUpdated":"1/18/2010 10:51 AM","fileSize":"31479","resolutionX":"500","resolutionY":"335","fileNameFullsize":"4526363_500x335.jpg","fileNameThumbnail":"4526363_100x67.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526363_500x335.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526363_100x67.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526363_500x335.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526363_100x67.jpg","original":{"type":"Original","fileSize":"31479","resolutionX":"500","resolutionY":"335","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526363_500x335.jpg"},"large":{"type":"Large","fileSize":"31479","resolutionX":"500","resolutionY":"335","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526363_500x335.jpg"},"small":{"type":"Small","fileSize":"3326","resolutionX":"100","resolutionY":"67","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526363_100x67.jpg"}},{"mediaID":"4526364","mediaOrder":"4","lastUpdated":"1/18/2010 10:51 AM","fileSize":"59174","resolutionX":"500","resolutionY":"856","fileNameFullsize":"4526364_500x856.jpg","fileNameThumbnail":"4526364_100x171.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526364_500x856.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526364_100x171.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526364_500x856.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526364_100x171.jpg","original":{"type":"Original","fileSize":"59174","resolutionX":"500","resolutionY":"856","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526364_500x856.jpg"},"large":{"type":"Large","fileSize":"59174","resolutionX":"500","resolutionY":"856","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526364_500x856.jpg"},"small":{"type":"Small","fileSize":"5449","resolutionX":"100","resolutionY":"171","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/2126/2126085/4526364_100x171.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2153092":{"animalID":"2153092","animalOrgID":"1023","animalActivityLevel":"Moderately Active","animalAdoptionFee":"$200","animalAltered":"Yes","animalAvailableDate":"","animalBirthdate":"12/1/2008","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Black with White","animalColorID":"25","animalColorDetails":"Black and White","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><div>***How much do you know about Corgis? According to www.dogbreedinfo.com, the Cardigan and the Pembroke Welsh Corgis have been considered separate breeds for only about 70 years (Cardigans have a long tail; Pembrokes don't have a tail). There are several theories about the origins of the Welsh Corgi. Both Corgis varieties may be descended form Swedish Vallhunds brought to Wales by Vikings in the 800's. Or perhaps the Cardigan is the older variety, brought to Wales by the Celts in about 1200 BC. The name &quot;Corgi&quot; comes from the Celtic word for dog. The breed was mentioned in the Domesday Book (1086). The Corgi drove cattle by barking and nipping at the cattle's heals. His low stature helped him role out of the way when a cow kicked. Corgis still maintain that habit when chasing each other. Corgi is highly intelligent, obedient, protective and robust. Steady, loyal and loving, but wary of strangers. They are willing to please. Several of these brave dogs have lost their lives defending their homes, as they were too small for the situation. A Pembroke Welsh Corgi is well-known as the favorite breed and pet of Queen Elizabeth II. Because of royal favor, and perhaps because of a slightly gentler personality, the Pembroke Welsh Corgi has become very popular, while the Cardigan is not as widespread. They have a life-expectancy of 12-15 years.</div></div>","animalDescriptionPlain":"***How much do you know about Corgis? According to www.dogbreedinfo.com, the Cardigan and the Pembroke Welsh Corgis have been considered separate breeds for only about 70 years (Cardigans have a long tail; Pembrokes don't have a tail). There are several theories about the origins of the Welsh Corgi. Both Corgis varieties may be descended form Swedish Vallhunds brought to Wales by Vikings in the 800's. Or perhaps the Cardigan is the older variety, brought to Wales by the Celts in about 1200 BC. The name &quot;Corgi&quot; comes from the Celtic word for dog. The breed was mentioned in the Domesday Book (1086). The Corgi drove cattle by barking and nipping at the cattle's heals. His low stature helped him role out of the way when a cow kicked. Corgis still maintain that habit when chasing each other. Corgi is highly intelligent, obedient, protective and robust. Steady, loyal and loving, but wary of strangers. They are willing to please. Several of these brave dogs have lost their lives defending their homes, as they were too small for the situation. A Pembroke Welsh Corgi is well-known as the favorite breed and pet of Queen Elizabeth II. Because of royal favor, and perhaps because of a slightly gentler personality, the Pembroke Welsh Corgi has become very popular, while the Cardigan is not as widespread. They have a life-expectancy of 12-15 years.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"Indoor Only","animalKillDate":"","animalKillReason":"","animalLocation":"32771","animalMicrochipped":"Yes","animalMixedBreed":"","animalName":"Leroy the Corgi","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"None","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Leroy the Corgi Black and White Black with White Male Medium 8701 Black and White Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"40.0","animalSizePotential":"0.0","animalSizeUOM":"Pounds","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"","animalUptodate":"Yes","animalUpdatedDate":"7/12/2010 8:21 AM","animalUrl":"http://www.petrescuebyjudy.com/animals/detail?AnimalID=2153092","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[],"animalVideos":[],"animalVideoUrls":[]},"2215154":{"animalID":"2215154","animalOrgID":"2817","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Corky is a pure bred tri-colored Pembroke Welsch Corgi. He is two years old. He has been neutered and up to date on all vaccinations as of February 24th. \n\n\n\nCorky is an alert and energetic dog who, loves to play throw and fetch. He can catch \"soft\" balls in mid-air. He is intellegent and quick to learn with proper training. He enjoys his walks and being around other people and animals. He is paper and house trained. \n\n\n\n****Corky has some behavioral issues and new adoptive owners will be given a full behavioral consultation and lifetime follow up and support. Only those willing to follow our advice will be considered to adopt Corky. A behavior DVD will also be included.\n\n\n\nNo children please!!\n\nNo Cats please!!</div>","animalDescriptionPlain":"Corky is a pure bred tri-colored Pembroke Welsch Corgi. He is two years old. He has been neutered and up to date on all vaccinations as of February 24th. \n\n\n\nCorky is an alert and energetic dog who, loves to play throw and fetch. He can catch \"soft\" balls in mid-air. He is intellegent and quick to learn with proper training. He enjoys his walks and being around other people and animals. He is paper and house trained. \n\n\n\n****Corky has some behavioral issues and new adoptive owners will be given a full behavioral consultation and lifetime follow up and support. Only those willing to follow our advice will be considered to adopt Corky. A behavior DVD will also be included.\n\n\n\nNo children please!!\n\nNo Cats please!!","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"32818","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Corky","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"No","animalOKWithDogs":"","animalOKWithKids":"No","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Corky Male Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"http://ihwn.rescuegroups.org/animals/detail?AnimalID=2215154","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[],"animalVideos":[],"animalVideoUrls":[]},"2256514":{"animalID":"2256514","animalOrgID":"4050","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">MUFFIN, MUFFIN, MUFIN<br> THIS GAL WAS RELINQUISHED TO THIS RESCUE FOR KILLING A PET GUINEA PIG.<br> CORGI'S ARE BEST SUITED FOR THE ADULT ONLY, OR FAMILIES THAT DO NOT HAVE REALLY YOUNG CHILDREN.<br> AND YOU MUST KEEP THE PET GUINEA PIGS AND HAMSTERS PUT AWAY, CORGI'S ARE BADGER HUNTERS SO THEY SEE NO DIFFERENCE IN BADGERS AND HAMSTERS.<br> MUFFIN LOVES ICE CUBES AND POPCORN .<br> MUFFIN IS A REAL SWEETHEART AND WILL BE APPROVED TO THE INDOOR FAMILY SETTING, WITH LEASHED WALKS FOR EXERCISE; MUFFIN IS FULL BLOODIED CORGI, AND IS 2 AND HALF YEARS OLD.<br> CORGI'S TEND TO DO BEST AS THE ONLY DOG BUT MUFFIN HAS FIT RIGHT IN TO HER NEW FOSTER HOME AND FOSTER SIBLINGS.<br> ADOPTION FEE IS $250.00 AND INCLUDES SPAY, ALL VACCINES, HEARTWORM TEST, WHICH SHE IS NEGATIVE AND MICRO-CHIP.<br> PLEASE FILL OUT AN APPLICATION TODAY<br> <br><br><br><br><br><P>If you think you might be interested in adopting 'MUFFIN', please download an application by <a target=\"_blank\" href=http://www.petfinder.org/~SC178/UpstateAdoptionApplication.doc>clicking here</a> then email the completed form to Kelley at <a target=\"_blank\" href='mailto:kblair01017@yahoo.com'> kblair01017@yahoo.com</a>.</P><br> <br> <br></div>","animalDescriptionPlain":"MUFFIN, MUFFIN, MUFIN THIS GAL WAS RELINQUISHED TO THIS RESCUE FOR KILLING A PET GUINEA PIG. CORGI'S ARE BEST SUITED FOR THE ADULT ONLY, OR FAMILIES THAT DO NOT HAVE REALLY YOUNG CHILDREN. AND YOU MUST KEEP THE PET GUINEA PIGS AND HAMSTERS PUT AWAY, CORGI'S ARE BADGER HUNTERS SO THEY SEE NO DIFFERENCE IN BADGERS AND HAMSTERS. MUFFIN LOVES ICE CUBES AND POPCORN . MUFFIN IS A REAL SWEETHEART AND WILL BE APPROVED TO THE INDOOR FAMILY SETTING, WITH LEASHED WALKS FOR EXERCISE; MUFFIN IS FULL BLOODIED CORGI, AND IS 2 AND HALF YEARS OLD. CORGI'S TEND TO DO BEST AS THE ONLY DOG BUT MUFFIN HAS FIT RIGHT IN TO HER NEW FOSTER HOME AND FOSTER SIBLINGS. ADOPTION FEE IS $250.00 AND INCLUDES SPAY, ALL VACCINES, HEARTWORM TEST, WHICH SHE IS NEGATIVE AND MICRO-CHIP. PLEASE FILL OUT AN APPLICATION TODAY If you think you might be interested in adopting 'MUFFIN', please download an application by clicking here then email the completed form to Kelley at kblair01017@yahoo.com. ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"06234","animalMicrochipped":"","animalMixedBreed":"No","animalName":"MUFFIN","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"MUFFIN Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"","animalUptodate":"Yes","animalUpdatedDate":"8/2/2011 2:27 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[],"animalVideos":[],"animalVideoUrls":[]},"2259143":{"animalID":"2259143","animalOrgID":"4050","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><BR><BR><BR>Suzie is female and less than one year old<BR><BR>Suzie&nbsp;is a sweet female less than one year in age. She would make a great addition to any family!<BR><BR><BR>All dogs featured on this site are in our Southern SC facility....................we send hundreds of dogs to northern forever homes each year, after adoption approval, we cheerfully arrange transport to with-in 60 miles of your home city.<BR>PLEASE GO TO <A href=\"http://www.uar.petfinder.com/\" mce_href=\"http://www.uar.petfinder.com\">www.uar.petfinder.com</A>, or click application to download an application.. fill out an application and email to <A href=\"mailto:kblair01017@yahoo.com\" mce_href=\"mailto:kblair01017@yahoo.com\">kblair01017@yahoo.com</A>&nbsp; Approved application, fee, vet reference and home visit required. Micro chipped, spayed and all shots up to date. Adoption fee includes spay/neuter, vaccines, heartworm test and microchip, transport provided to with-in 70 miles of adoptive parents home city. (Transport provided for states north of North Carolina) Adoption fees range from $150-$350 depending on services that have been provided for the pet you have chosen.<BR>Please understand we take great pride in chosing the perfect home for our pets and the correct pet for you, the adoption process takes a few weeks, however, we can usually advise you in a few days that a decision has been made for the application, this enables you to prepare for your new fur-kid to arrive. If you have outside pets, meaning any pet that lives outside all the time, please do not apply for adoption.<BR>We require all our pets to live inside with secure outside exercise and potty, we do not allow chaining, cabling, the use of tie outs.................Also visit our website at <A href=\"http://www.upstateanimalrescue.weebly.com/\" mce_href=\"http://www.upstateanimalrescue.weebly.com\">www.upstateanimalrescue.weebly.com</A><BR><BR><BR>IF YOU ARE INTERESTED IN ADOPTING ONE OF OUR ANIMALS, PLEASE DOWNLOAD AN APPLICATION BY CLICKING HERE THEN E-MAIL THE COMPLETED APPLICATION FORM TO&nbsp; kblair01017@yahoo.com Approved application and positive home visit and vet references required...........<BR>\r\n<H3><A href=\"http://members.petfinder.org/~SC178/UpstateAdoptionApplication.doc\" target=_blank mce_href=\"http://members.petfinder.org/~SC178/UpstateAdoptionApplication.doc\">Click here to download the adoption application</A><BR mce_bogus=\"1\"></H3>&nbsp; <A href=\"http://www.care2.com/animalsheltercontest/73989/?refer=13962.10.1223033037.0509\" target=_blank mce_href=\"http://www.care2.com/animalsheltercontest/73989/?refer=13962.10.1223033037.0509\"><IMG border=0 src=\"http://dingo.care2.com/contest/shelter/pre-launch-banner-dog.gif\" width=150 height=200 mce_src=\"http://dingo.care2.com/contest/shelter/pre-launch-banner-dog.gif\"></A><BR><BR><IMG src=\"http://www.?2227362&amp;a=3273&amp;h=\" width=0 height=0 mce_src=\"http://www.?2227362&amp;a=3273&amp;h=\"></div>","animalDescriptionPlain":"Suzie is female and less than one year oldSuzie&nbsp;is a sweet female less than one year in age. She would make a great addition to any family!All dogs featured on this site are in our Southern SC facility....................we send hundreds of dogs to northern forever homes each year, after adoption approval, we cheerfully arrange transport to with-in 60 miles of your home city.PLEASE GO TO www.uar.petfinder.com, or click application to download an application.. fill out an application and email to kblair01017@yahoo.com&nbsp; Approved application, fee, vet reference and home visit required. Micro chipped, spayed and all shots up to date. Adoption fee includes spay/neuter, vaccines, heartworm test and microchip, transport provided to with-in 70 miles of adoptive parents home city. (Transport provided for states north of North Carolina) Adoption fees range from $150-$350 depending on services that have been provided for the pet you have chosen.Please understand we take great pride in chosing the perfect home for our pets and the correct pet for you, the adoption process takes a few weeks, however, we can usually advise you in a few days that a decision has been made for the application, this enables you to prepare for your new fur-kid to arrive. If you have outside pets, meaning any pet that lives outside all the time, please do not apply for adoption.We require all our pets to live inside with secure outside exercise and potty, we do not allow chaining, cabling, the use of tie outs.................Also visit our website at www.upstateanimalrescue.weebly.comIF YOU ARE INTERESTED IN ADOPTING ONE OF OUR ANIMALS, PLEASE DOWNLOAD AN APPLICATION BY CLICKING HERE THEN E-MAIL THE COMPLETED APPLICATION FORM TO&nbsp; kblair01017@yahoo.com Approved application and positive home visit and vet references required...........\r\nClick here to download the adoption application&nbsp; ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"06234","animalMicrochipped":"","animalMixedBreed":"","animalName":"Suzie","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Suzie Female Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4803567_100x84.jpg","animalUptodate":"Yes","animalUpdatedDate":"8/2/2011 2:27 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"4803567","mediaOrder":"1","lastUpdated":"3/25/2010 3:56 PM","fileSize":"26325","resolutionX":"500","resolutionY":"423","fileNameFullsize":"4803567_500x423.jpg","fileNameThumbnail":"4803567_100x84.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4803567_500x423.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4803567_100x84.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4803567_500x423.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4803567_100x84.jpg","original":{"type":"Original","fileSize":"26325","resolutionX":"500","resolutionY":"423","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4803567_500x423.jpg"},"large":{"type":"Large","fileSize":"26325","resolutionX":"500","resolutionY":"423","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4803567_500x423.jpg"},"small":{"type":"Small","fileSize":"2879","resolutionX":"100","resolutionY":"84","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4803567_100x84.jpg"}},{"mediaID":"4916372","mediaOrder":"2","lastUpdated":"3/25/2010 3:56 PM","fileSize":"44071","resolutionX":"500","resolutionY":"510","fileNameFullsize":"4916372_500x510.jpg","fileNameThumbnail":"4916372_100x102.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916372_500x510.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916372_100x102.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916372_500x510.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916372_100x102.jpg","original":{"type":"Original","fileSize":"44071","resolutionX":"500","resolutionY":"510","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916372_500x510.jpg"},"large":{"type":"Large","fileSize":"44071","resolutionX":"500","resolutionY":"510","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916372_500x510.jpg"},"small":{"type":"Small","fileSize":"3270","resolutionX":"100","resolutionY":"102","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916372_100x102.jpg"}},{"mediaID":"4916361","mediaOrder":"3","lastUpdated":"3/25/2010 3:56 PM","fileSize":"23611","resolutionX":"500","resolutionY":"457","fileNameFullsize":"4916361_500x457.jpg","fileNameThumbnail":"4916361_100x91.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916361_500x457.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916361_100x91.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916361_500x457.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916361_100x91.jpg","original":{"type":"Original","fileSize":"23611","resolutionX":"500","resolutionY":"457","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916361_500x457.jpg"},"large":{"type":"Large","fileSize":"23611","resolutionX":"500","resolutionY":"457","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916361_500x457.jpg"},"small":{"type":"Small","fileSize":"2664","resolutionX":"100","resolutionY":"91","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916361_100x91.jpg"}},{"mediaID":"4916362","mediaOrder":"4","lastUpdated":"3/25/2010 3:56 PM","fileSize":"46544","resolutionX":"500","resolutionY":"435","fileNameFullsize":"4916362_500x435.jpg","fileNameThumbnail":"4916362_100x87.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916362_500x435.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916362_100x87.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916362_500x435.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916362_100x87.jpg","original":{"type":"Original","fileSize":"46544","resolutionX":"500","resolutionY":"435","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916362_500x435.jpg"},"large":{"type":"Large","fileSize":"46544","resolutionX":"500","resolutionY":"435","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916362_500x435.jpg"},"small":{"type":"Small","fileSize":"3340","resolutionX":"100","resolutionY":"87","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4050/pictures/animals/2259/2259143/4916362_100x87.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"232075":{"animalID":"232075","animalOrgID":"995","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Shorty was picked up down at Stringtown Day Car on September 10th. They said he had been there for a couple of days already. Shorty is a really cute dog and if his owner doesn't come and get him by the 17th, he will be put up for adoption.\r \r Petfinder only allows us to post three pictures of each pet, but we have more pictures of Shorty. If you would like to see them, please click<A HREF=\"http://www.dcr.net/~humane/Additional_Pictures7.html\">\r HERE</A><br>\r <br>\r \r \r <h5>Please be sure when contacting the shelter that you mention this animal's number as the shelter workers only know the animals by number and not by name. </h5><br>\r \r <h5>Please visit our website for more information on adoption. </h5><br>\r \r If you don't have room in your home, but do have room in your heart, you could sponsor this animal. This means you pay part of the adoption fee, making it possible for them to be adopted much sooner. For more information on sponsoring, please click<A HREF=\"http://www.dcr.net/~humane/Sponsor.html\">\r HERE</A><br>\r <br>\r \r We are trying to raise money to build a bigger, better shelter. For more information, or if you would like to donate, please click\r <A HREF=\"http://www.dcr.net/~humane/Our New Shelter.html\">\r HERE</A><br>\r <br>\r \r <A HREF=\"http://www.dcr.net/~humane/adoptables.html\">\r Click here for an adoption application</A>\r \r \r </div>","animalDescriptionPlain":"Shorty was picked up down at Stringtown Day Car on September 10th. They said he had been there for a couple of days already. Shorty is a really cute dog and if his owner doesn't come and get him by the 17th, he will be put up for adoption.\r \r Petfinder only allows us to post three pictures of each pet, but we have more pictures of Shorty. If you would like to see them, please click\r HERE\r \r \r \r Please be sure when contacting the shelter that you mention this animal's number as the shelter workers only know the animals by number and not by name. \r \r Please visit our website for more information on adoption. \r \r If you don't have room in your home, but do have room in your heart, you could sponsor this animal. This means you pay part of the adoption fee, making it possible for them to be adopted much sooner. For more information on sponsoring, please click\r HERE\r \r \r We are trying to raise money to build a bigger, better shelter. For more information, or if you would like to donate, please click\r \r HERE\r \r \r \r Click here for an adoption application\r \r \r ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"40342","animalMicrochipped":"","animalMixedBreed":"No","animalName":"W#158 Shorty","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"Adoption Fee $80","animalSearchString":"W#158 Shorty Male Medium Adoption Fee $80 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375572_100x122.jpg","animalUptodate":"","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"375572","mediaOrder":"1","lastUpdated":"8/9/2007 5:50 PM","fileSize":"13168","resolutionX":"147","resolutionY":"180","fileNameFullsize":"375572_147x180.jpg","fileNameThumbnail":"375572_100x122.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375572_147x180.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375572_100x122.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375572_147x180.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375572_100x122.jpg","original":{"type":"Original","fileSize":"13168","resolutionX":"147","resolutionY":"180","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375572_147x180.jpg"},"large":{"type":"Large","fileSize":"13168","resolutionX":"147","resolutionY":"180","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375572_147x180.jpg"},"small":{"type":"Small","fileSize":"3395","resolutionX":"100","resolutionY":"122","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375572_100x122.jpg"}},{"mediaID":"375573","mediaOrder":"2","lastUpdated":"8/9/2007 5:50 PM","fileSize":"14884","resolutionX":"169","resolutionY":"180","fileNameFullsize":"375573_169x180.jpg","fileNameThumbnail":"375573_100x106.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375573_169x180.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375573_100x106.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375573_169x180.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375573_100x106.jpg","original":{"type":"Original","fileSize":"14884","resolutionX":"169","resolutionY":"180","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375573_169x180.jpg"},"large":{"type":"Large","fileSize":"14884","resolutionX":"169","resolutionY":"180","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375573_169x180.jpg"},"small":{"type":"Small","fileSize":"3284","resolutionX":"100","resolutionY":"106","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375573_100x106.jpg"}},{"mediaID":"375574","mediaOrder":"3","lastUpdated":"8/9/2007 5:50 PM","fileSize":"13594","resolutionX":"162","resolutionY":"180","fileNameFullsize":"375574_162x180.jpg","fileNameThumbnail":"375574_100x111.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375574_162x180.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375574_100x111.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375574_162x180.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375574_100x111.jpg","original":{"type":"Original","fileSize":"13594","resolutionX":"162","resolutionY":"180","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375574_162x180.jpg"},"large":{"type":"Large","fileSize":"13594","resolutionX":"162","resolutionY":"180","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375574_162x180.jpg"},"small":{"type":"Small","fileSize":"2963","resolutionX":"100","resolutionY":"111","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/995/pictures/animals/232/232075/375574_100x111.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"232515":{"animalID":"232515","animalOrgID":"988","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Trouble has had a hard start at life but is doing wonderfully. His mother was rescued from a puppymill very pregnant. Trouble was brought into the world by c-section. He was 1/2 the size of his brother and was a fighter from day one. At 8 weeks he contracted the parvo virus and we were not sure he was going to make it. After my months of care he is ready for his forever home that will continue to pamper him. <br>Trouble is 4 months old and not house trained. <br> All of our adoptions are contingent upon an approved application, home visit, reference check, obedience training agreement, and signing of adoption contract. <br> All our dogs are spayed/neutered, vaccinated, and microchipped before adoption. To help pay for their medical bills, a $ 300 donation is requested at the time of adoption.<br></div>","animalDescriptionPlain":"Trouble has had a hard start at life but is doing wonderfully. His mother was rescued from a puppymill very pregnant. Trouble was brought into the world by c-section. He was 1/2 the size of his brother and was a fighter from day one. At 8 weeks he contracted the parvo virus and we were not sure he was going to make it. After my months of care he is ready for his forever home that will continue to pamper him. Trouble is 4 months old and not house trained. All of our adoptions are contingent upon an approved application, home visit, reference check, obedience training agreement, and signing of adoption contract. All our dogs are spayed/neutered, vaccinated, and microchipped before adoption. To help pay for their medical bills, a $ 300 donation is requested at the time of adoption.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Baby","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"68123","animalMicrochipped":"","animalMixedBreed":"","animalName":"Trouble","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Trouble Male Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377038_100x115.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"377038","mediaOrder":"1","lastUpdated":"8/9/2007 5:50 PM","fileSize":"26137","resolutionX":"432","resolutionY":"500","fileNameFullsize":"377038_432x500.jpg","fileNameThumbnail":"377038_100x115.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377038_432x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377038_100x115.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377038_432x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377038_100x115.jpg","original":{"type":"Original","fileSize":"26137","resolutionX":"432","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377038_432x500.jpg"},"large":{"type":"Large","fileSize":"26137","resolutionX":"432","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377038_432x500.jpg"},"small":{"type":"Small","fileSize":"3512","resolutionX":"100","resolutionY":"115","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377038_100x115.jpg"}},{"mediaID":"377039","mediaOrder":"2","lastUpdated":"8/9/2007 5:50 PM","fileSize":"40016","resolutionX":"500","resolutionY":"375","fileNameFullsize":"377039_500x375.jpg","fileNameThumbnail":"377039_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377039_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377039_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377039_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377039_100x75.jpg","original":{"type":"Original","fileSize":"40016","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377039_500x375.jpg"},"large":{"type":"Large","fileSize":"40016","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377039_500x375.jpg"},"small":{"type":"Small","fileSize":"3867","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377039_100x75.jpg"}},{"mediaID":"377040","mediaOrder":"3","lastUpdated":"8/9/2007 5:50 PM","fileSize":"48526","resolutionX":"500","resolutionY":"415","fileNameFullsize":"377040_500x415.jpg","fileNameThumbnail":"377040_100x83.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377040_500x415.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377040_100x83.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377040_500x415.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377040_100x83.jpg","original":{"type":"Original","fileSize":"48526","resolutionX":"500","resolutionY":"415","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377040_500x415.jpg"},"large":{"type":"Large","fileSize":"48526","resolutionX":"500","resolutionY":"415","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377040_500x415.jpg"},"small":{"type":"Small","fileSize":"3828","resolutionX":"100","resolutionY":"83","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/988/pictures/animals/232/232515/377040_100x83.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"238931":{"animalID":"238931","animalOrgID":"342","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Tan","animalColorID":"57","animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">tAN/WT MALE CORGIE GOOD WITH OTHER DOGS</div>","animalDescriptionPlain":"tAN/WT MALE CORGIE GOOD WITH OTHER DOGS","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"43338","animalMicrochipped":"","animalMixedBreed":"","animalName":"cORKY","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"Yes","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"308","animalSearchString":"cORKY Tan Male Small 308 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"","animalUptodate":"","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[],"animalVideos":[],"animalVideoUrls":[]},"2413919":{"animalID":"2413919","animalOrgID":"4145","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Tan/Yellow/Fawn with White","animalColorID":"36","animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">12/26/08 - Olive Olye was surrendered to the shelter on 12/24/08. She is a tan and white Corgi with a short coat. She is pregnant and we are looking for a foster home to give her a home until after the pups are born. We believe that the father of the puppies is the Dachshund, Popeye, who was surrendered with her. She is available for adoption and we would be able to place the puppies in homes after they are born.</div>","animalDescriptionPlain":"12/26/08 - Olive Olye was surrendered to the shelter on 12/24/08. She is a tan and white Corgi with a short coat. She is pregnant and we are looking for a foster home to give her a home until after the pups are born. We believe that the father of the puppies is the Dachshund, Popeye, who was surrendered with her. She is available for adoption and we would be able to place the puppies in homes after they are born.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"47854","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Olive Oyle","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"Yes","animalOKWithKids":"Yes","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"3340","animalSearchString":"Olive Oyle Tan/Yellow/Fawn with White Female Medium 3340 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223184_100x87.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"5223184","mediaOrder":"1","lastUpdated":"5/7/2010 10:45 PM","fileSize":"11447","resolutionX":"144","resolutionY":"126","fileNameFullsize":"5223184_144x126.jpg","fileNameThumbnail":"5223184_100x87.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223184_144x126.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223184_100x87.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223184_144x126.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223184_100x87.jpg","original":{"type":"Original","fileSize":"11447","resolutionX":"144","resolutionY":"126","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223184_144x126.jpg"},"large":{"type":"Large","fileSize":"11447","resolutionX":"144","resolutionY":"126","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223184_144x126.jpg"},"small":{"type":"Small","fileSize":"3184","resolutionX":"100","resolutionY":"87","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223184_100x87.jpg"}},{"mediaID":"5223185","mediaOrder":"2","lastUpdated":"5/7/2010 10:45 PM","fileSize":"57718","resolutionX":"274","resolutionY":"306","fileNameFullsize":"5223185_274x306.jpg","fileNameThumbnail":"5223185_100x111.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223185_274x306.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223185_100x111.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223185_274x306.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223185_100x111.jpg","original":{"type":"Original","fileSize":"57718","resolutionX":"274","resolutionY":"306","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223185_274x306.jpg"},"large":{"type":"Large","fileSize":"57718","resolutionX":"274","resolutionY":"306","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223185_274x306.jpg"},"small":{"type":"Small","fileSize":"5380","resolutionX":"100","resolutionY":"111","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223185_100x111.jpg"}},{"mediaID":"5223187","mediaOrder":"3","lastUpdated":"5/7/2010 10:45 PM","fileSize":"29910","resolutionX":"310","resolutionY":"264","fileNameFullsize":"5223187_310x264.jpg","fileNameThumbnail":"5223187_100x85.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223187_310x264.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223187_100x85.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223187_310x264.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223187_100x85.jpg","original":{"type":"Original","fileSize":"29910","resolutionX":"310","resolutionY":"264","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223187_310x264.jpg"},"large":{"type":"Large","fileSize":"29910","resolutionX":"310","resolutionY":"264","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223187_310x264.jpg"},"small":{"type":"Small","fileSize":"2875","resolutionX":"100","resolutionY":"85","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223187_100x85.jpg"}},{"mediaID":"5223188","mediaOrder":"4","lastUpdated":"5/7/2010 10:45 PM","fileSize":"59364","resolutionX":"353","resolutionY":"238","fileNameFullsize":"5223188_353x238.jpg","fileNameThumbnail":"5223188_100x67.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223188_353x238.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223188_100x67.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223188_353x238.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223188_100x67.jpg","original":{"type":"Original","fileSize":"59364","resolutionX":"353","resolutionY":"238","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223188_353x238.jpg"},"large":{"type":"Large","fileSize":"59364","resolutionX":"353","resolutionY":"238","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223188_353x238.jpg"},"small":{"type":"Small","fileSize":"3650","resolutionX":"100","resolutionY":"67","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2413/2413919/5223188_100x67.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2421193":{"animalID":"2421193","animalOrgID":"4145","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Olive Oyle came into the shelter on 12/24/08. She is a tan and white Corgi with a short coat. She is housebroken and gets along great with people and other dogs and puppies. Olive Oyle also doesn't mind cats. Olive Oyle is spayed, up-to-date on her shots, incuding her rabies vaccination, and has been wormed. she is approximately two years old and weighs about 25 pounds. Olive Oyle enjoys hanging out up front with the staff and is a favorite at the shelter. She is always a hit with the public and volunteers. She can frequently be seen relaxing, lying on her back with her tail wagging as you walk by.</div>","animalDescriptionPlain":"Olive Oyle came into the shelter on 12/24/08. She is a tan and white Corgi with a short coat. She is housebroken and gets along great with people and other dogs and puppies. Olive Oyle also doesn't mind cats. Olive Oyle is spayed, up-to-date on her shots, incuding her rabies vaccination, and has been wormed. she is approximately two years old and weighs about 25 pounds. Olive Oyle enjoys hanging out up front with the staff and is a favorite at the shelter. She is always a hit with the public and volunteers. She can frequently be seen relaxing, lying on her back with her tail wagging as you walk by.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"47854","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Olive Oyle","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Olive Oyle Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240827_100x87.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"5240827","mediaOrder":"1","lastUpdated":"5/10/2010 4:15 PM","fileSize":"7899","resolutionX":"144","resolutionY":"126","fileNameFullsize":"5240827_144x126.jpg","fileNameThumbnail":"5240827_100x87.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240827_144x126.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240827_100x87.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240827_144x126.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240827_100x87.jpg","original":{"type":"Original","fileSize":"7899","resolutionX":"144","resolutionY":"126","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240827_144x126.jpg"},"large":{"type":"Large","fileSize":"7899","resolutionX":"144","resolutionY":"126","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240827_144x126.jpg"},"small":{"type":"Small","fileSize":"3355","resolutionX":"100","resolutionY":"87","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240827_100x87.jpg"}},{"mediaID":"5240828","mediaOrder":"2","lastUpdated":"5/10/2010 4:15 PM","fileSize":"8248","resolutionX":"144","resolutionY":"128","fileNameFullsize":"5240828_144x128.jpg","fileNameThumbnail":"5240828_100x89.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240828_144x128.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240828_100x89.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240828_144x128.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240828_100x89.jpg","original":{"type":"Original","fileSize":"8248","resolutionX":"144","resolutionY":"128","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240828_144x128.jpg"},"large":{"type":"Large","fileSize":"8248","resolutionX":"144","resolutionY":"128","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240828_144x128.jpg"},"small":{"type":"Small","fileSize":"4736","resolutionX":"100","resolutionY":"89","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240828_100x89.jpg"}},{"mediaID":"5240829","mediaOrder":"3","lastUpdated":"5/10/2010 4:15 PM","fileSize":"6307","resolutionX":"144","resolutionY":"97","fileNameFullsize":"5240829_144x97.jpg","fileNameThumbnail":"5240829_100x67.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240829_144x97.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240829_100x67.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240829_144x97.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240829_100x67.jpg","original":{"type":"Original","fileSize":"6307","resolutionX":"144","resolutionY":"97","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240829_144x97.jpg"},"large":{"type":"Large","fileSize":"6307","resolutionX":"144","resolutionY":"97","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240829_144x97.jpg"},"small":{"type":"Small","fileSize":"3764","resolutionX":"100","resolutionY":"67","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4145/pictures/animals/2421/2421193/5240829_100x67.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2437993":{"animalID":"2437993","animalOrgID":"993","animalActivityLevel":"Moderately Active","animalAdoptionFee":"","animalAltered":"Yes","animalAvailableDate":"6/5/2010","animalBirthdate":"5/15/2008","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Fawn","animalColorID":"35","animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><span mce_style=\"font-size: 14pt;\" style=\"font-size: 14pt;\"><span mce_style=\"font-family: comic sans ms,sans-serif;\" style=\"font-family: comic sans ms,sans-serif;\"><span mce_style=\"color: #008080;\" style=\"color: rgb(0, 128, 128);\"><b><i>Meet Tara!<br>Tara is a great dog that was stuck in a high kill shelter with time running out.&nbsp; She will be brought to MARS where she has a second chance at a new life and a happily ever after ending!&nbsp; She gets along wonderfully with other dogs and children and will make a great family pet.&nbsp; <br><br>To adopt Tara, please complete one of our on-line applications by clicking on the link below. Thank you!</i></b></span></span></span><br mce_bogus=\"1\"></div>","animalDescriptionPlain":"Meet Tara!Tara is a great dog that was stuck in a high kill shelter with time running out.&nbsp; She will be brought to MARS where she has a second chance at a new life and a happily ever after ending!&nbsp; She gets along wonderfully with other dogs and children and will make a great family pet.&nbsp; To adopt Tara, please complete one of our on-line applications by clicking on the link below. Thank you!","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"55429","animalMicrochipped":"","animalMixedBreed":"","animalName":"Tara","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"Yes","animalOKWithKids":"Yes","animalOwnerExperience":"None","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"M-2487","animalSearchString":"Tara Fawn Female M-2487 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"25.0","animalSizePotential":"0.0","animalSizeUOM":"Pounds","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/2437/2437993/5287527_100x139.jpg","animalUptodate":"","animalUpdatedDate":"11/4/2010 2:25 PM","animalUrl":"http://www.midwestanimalrescue.org/animals/detail?AnimalID=2437993","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"5287527","mediaOrder":"1","lastUpdated":"5/17/2010 12:42 AM","fileSize":"7040","resolutionX":"61","resolutionY":"85","fileNameFullsize":"5287527_61x85.jpg","fileNameThumbnail":"5287527_100x139.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/2437/2437993/5287527_61x85.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/2437/2437993/5287527_100x139.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/2437/2437993/5287527_61x85.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/2437/2437993/5287527_100x139.jpg","original":{"type":"Original","fileSize":"7040","resolutionX":"61","resolutionY":"85","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/2437/2437993/5287527_61x85.jpg"},"large":{"type":"Large","fileSize":"7040","resolutionX":"61","resolutionY":"85","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/2437/2437993/5287527_61x85.jpg"},"small":{"type":"Small","fileSize":"5385","resolutionX":"100","resolutionY":"139","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/2437/2437993/5287527_100x139.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"244082":{"animalID":"244082","animalOrgID":"1059","animalActivityLevel":"","animalAdoptionFee":null,"animalAltered":"Yes","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Donation $400 - NO TRANSPORT COST.\r <hr>\r Pembroke Welsh Corgi - BEAUTIFUL YOUNG FEMALE! \r <hr>\r Age 2 years\r <hr>\r UTD on Rabies, allergic to distemper, on HW preventative.\r <HR>\r Microchipped\r <HR>\r spayed female\r <hr>\r Queenie is a Full blooded Tri Colored Pembroke Welsh Corgi.\r <hr>\r Located in Rhode Island.\r <HR>\r Donation $400\r <HR>\r Queenie is well behaved and housetrained. Has an occassional accident over night, but is also crate trained. She gets alone well with other dogs, she can be bossy at times. She also gets along well with cats. She loves older children, does not tolerate the nit picking of toddlers, she will nip at them if she feels threatened. She is very strong and needs some training on leash walking, she pulls when walking. She likes to play and enjoys belly rubs. She likes to always be where her human is and sleep in the bed as well. She enjoys car rides.\r <hr>\r She is being treated right now for a skin rash, caused by switching of food, she is back on the food she has always eaten, Purina one with lamb and rice, and the rash is fading.\r <hr>\r She is a herding dog, and her new owners should be familiar with the characteristics of a Corgi. She will make a wonderful family member.\r <hr>\r A fenced yard is a must as she is a runner given the chance..I have never walked this dog off a leash as she has shown what she will do if given the chance. RUN RUN RUN\r <hr>\r She would do best in a Home with NO small children.\r <hr>\r SERIOUS INQUIRIES ONLY - PLEASE -APPLICATIONS WILL NOT BE PROCESSED WITHOUT A DEPOSIT (SEE HOW TO DO YOUR DEPOSIT & ONLINE APPLICATION BELOW)\r <HR>\r <LI>We do not have a shelter so there are no set visiting hours or place to visit. We foster all the dogs in foster homes in various locations. \r <hr>\r APPLICATIONS WILL NOT BE PROCESSED WITHOUT A DEPOSIT - THANKS!\r <H3><a href=\"http://members.petfinder.org/~MA226/ApplicationCGI.htm\">Click here to complete our online application!</a></H3></center>\r <hr>\r References listed on this application will be checked & we do require a HOME VISIT PRIOR to any adoption. \r <HR>\r <LI>Our main goal is to make the best possible match between the dog and the adopter. \r <LI>Adoptions are not on a first come first serve basis. \r <LI>Please be aware that we do require an application, veterinary references and do HOME CHECKS BEFORE placing our dogs. \r <HR>\r <LI>There is a minimum adoption donation which helps us to offset veterinary costs (YES, THE VETS DO CHARGE US & IT IS NOT CHEAP!) for the dog you adopt and so that we can continue to help OTHER Boston Terriers & dogs in need. \r <LI>All of our dogs receive any necessary medical treatment, are up to date on their shots (based on age) and are spayed or neutered prior to adoption.\r <HR>\r <LI>We have had no choice but to increase our adoption donation due to drastic increases in veterinary care - The Donations are listed on our site: \r <HR>\r </OL>\r <LI>The minimum deposit to hold any dog is $200. \r <HR>\r <LI>Balance is due when you pick up your dog.\r <BR>\r I strongly recommend doing a deposit as many who have not have been very disappointed when 'their' dog is spoken for by someone else!\r <HR>\r Deposit Donations can be made by Paypal: \r <form name=\"_xclick\" action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\">\r <input type=\"hidden\" name=\"cmd\" value=\"_xclick\">\r <input type=\"hidden\" name=\"business\" value=\"a2zadoption@yahoo.com\">\r <input type=\"hidden\" name=\"item_name\" value=\"Friends of the Animals, Inc.\">\r <input type=\"image\" src=\"http://www.paypal.com/en_US/i/btn/x-click-butcc-donate.gif\" border=\"0\" name=\"submit\" alt=\"We happily accept donations via PayPal for your convenience\">\r </form>\r <HR>\r <LI>Balance is due when you pick up your dog.\r <br>\r <LI>If we can not get the dog you are interested in, your deposit is automatically refunded. \r <bR>\r <LI>If you are not approved to adopt, your deposit is automatically refunded.\r <BR>\r IF YOU CHANGE YOUR MIND, YOUR DEPOSIT IS NOT REFUNDED!!!!\r Tami McClain\r 121 Smith Rd\r Sarver, PA 16055\r E-Mail: tmcclain@zoominternet.net\r Home Phone#: 724-353-2712\r 7/15/06 gave her $100 off the $400 donation toward transport of Queenie and Molly (BT) coming to MA for adoption.\r This was Peggy Bailey's dog - Peggy owed us $415 for BT pup and satisfied $400 of her debt with this dionation given for her dog Queenie. Still owes $15 - forget!\r </div>","animalDescriptionPlain":"Donation $400 - NO TRANSPORT COST.\r \r Pembroke Welsh Corgi - BEAUTIFUL YOUNG FEMALE! \r \r Age 2 years\r \r UTD on Rabies, allergic to distemper, on HW preventative.\r \r Microchipped\r \r spayed female\r \r Queenie is a Full blooded Tri Colored Pembroke Welsh Corgi.\r \r Located in Rhode Island.\r \r Donation $400\r \r Queenie is well behaved and housetrained. Has an occassional accident over night, but is also crate trained. She gets alone well with other dogs, she can be bossy at times. She also gets along well with cats. She loves older children, does not tolerate the nit picking of toddlers, she will nip at them if she feels threatened. She is very strong and needs some training on leash walking, she pulls when walking. She likes to play and enjoys belly rubs. She likes to always be where her human is and sleep in the bed as well. She enjoys car rides.\r \r She is being treated right now for a skin rash, caused by switching of food, she is back on the food she has always eaten, Purina one with lamb and rice, and the rash is fading.\r \r She is a herding dog, and her new owners should be familiar with the characteristics of a Corgi. She will make a wonderful family member.\r \r A fenced yard is a must as she is a runner given the chance..I have never walked this dog off a leash as she has shown what she will do if given the chance. RUN RUN RUN\r \r She would do best in a Home with NO small children.\r \r SERIOUS INQUIRIES ONLY - PLEASE -APPLICATIONS WILL NOT BE PROCESSED WITHOUT A DEPOSIT (SEE HOW TO DO YOUR DEPOSIT & ONLINE APPLICATION BELOW)\r \r We do not have a shelter so there are no set visiting hours or place to visit. We foster all the dogs in foster homes in various locations. \r \r APPLICATIONS WILL NOT BE PROCESSED WITHOUT A DEPOSIT - THANKS!\r Click here to complete our online application!\r \r References listed on this application will be checked & we do require a HOME VISIT PRIOR to any adoption. \r \r Our main goal is to make the best possible match between the dog and the adopter. \r Adoptions are not on a first come first serve basis. \r Please be aware that we do require an application, veterinary references and do HOME CHECKS BEFORE placing our dogs. \r \r There is a minimum adoption donation which helps us to offset veterinary costs (YES, THE VETS DO CHARGE US & IT IS NOT CHEAP!) for the dog you adopt and so that we can continue to help OTHER Boston Terriers & dogs in need. \r All of our dogs receive any necessary medical treatment, are up to date on their shots (based on age) and are spayed or neutered prior to adoption.\r \r We have had no choice but to increase our adoption donation due to drastic increases in veterinary care - The Donations are listed on our site: \r \r \r The minimum deposit to hold any dog is $200. \r \r Balance is due when you pick up your dog.\r \r I strongly recommend doing a deposit as many who have not have been very disappointed when 'their' dog is spoken for by someone else!\r \r Deposit Donations can be made by Paypal: \r \r \r \r \r \r \r \r Balance is due when you pick up your dog.\r \r If we can not get the dog you are interested in, your deposit is automatically refunded. \r \r If you are not approved to adopt, your deposit is automatically refunded.\r \r IF YOU CHANGE YOUR MIND, YOUR DEPOSIT IS NOT REFUNDED!!!!\r Tami McClain\r 121 Smith Rd\r Sarver, PA 16055\r E-Mail: tmcclain@zoominternet.net\r Home Phone#: 724-353-2712\r 7/15/06 gave her $100 off the $400 donation toward transport of Queenie and Molly (BT) coming to MA for adoption.\r This was Peggy Bailey's dog - Peggy owed us $415 for BT pup and satisfied $400 of her debt with this dionation given for her dog Queenie. Still owes $15 - forget!\r ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"33050","animalMicrochipped":"No","animalMixedBreed":"No","animalName":"Queenie","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"No","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Queenie Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409505_100x44.jpg","animalUptodate":"Yes","animalUpdatedDate":"4/29/2014 12:31 PM","animalUrl":"http://FOHA.rescuegroups.org/animals/detail?AnimalID=244082","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"409505","mediaOrder":"1","lastUpdated":"8/9/2007 5:50 PM","fileSize":"15929","resolutionX":"500","resolutionY":"220","fileNameFullsize":"409505_500x220.jpg","fileNameThumbnail":"409505_100x44.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409505_500x220.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409505_100x44.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409505_500x220.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409505_100x44.jpg","original":{"type":"Original","fileSize":"15929","resolutionX":"500","resolutionY":"220","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409505_500x220.jpg"},"large":{"type":"Large","fileSize":"15929","resolutionX":"500","resolutionY":"220","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409505_500x220.jpg"},"small":{"type":"Small","fileSize":"2054","resolutionX":"100","resolutionY":"44","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409505_100x44.jpg"}},{"mediaID":"409506","mediaOrder":"2","lastUpdated":"8/9/2007 5:50 PM","fileSize":"25734","resolutionX":"496","resolutionY":"500","fileNameFullsize":"409506_496x500.jpg","fileNameThumbnail":"409506_100x100.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409506_496x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409506_100x100.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409506_496x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409506_100x100.jpg","original":{"type":"Original","fileSize":"25734","resolutionX":"496","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409506_496x500.jpg"},"large":{"type":"Large","fileSize":"25734","resolutionX":"496","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409506_496x500.jpg"},"small":{"type":"Small","fileSize":"3190","resolutionX":"100","resolutionY":"100","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1059/pictures/animals/244/244082/409506_100x100.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2450537":{"animalID":"2450537","animalOrgID":"240","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Tan/Yellow/Fawn with White","animalColorID":"36","animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><span mce_style=\"color: #ff0000;\" style=\"color: rgb(255, 0, 0);\">ADOPTED<br></span>Sweet Loving Social and Great with kids and dogs<br mce_bogus=\"1\"></div>","animalDescriptionPlain":"ADOPTEDSweet Loving Social and Great with kids and dogs","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"60491","animalMicrochipped":"No","animalMixedBreed":"","animalName":"ARRIVING 5/22","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"Yes","animalOKWithKids":"Yes","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"ARRIVING 5/22 Tan/Yellow/Fawn with White Male Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450537/5316202_100x75.jpg","animalUptodate":"","animalUpdatedDate":"5/28/2010 2:42 PM","animalUrl":"http://tlcanimalshelter.rescuegroups.org/animals/detail?AnimalID=2450537","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"5316202","mediaOrder":"1","lastUpdated":"5/20/2010 7:03 PM","fileSize":"4506","resolutionX":"150","resolutionY":"113","fileNameFullsize":"5316202_150x113.jpg","fileNameThumbnail":"5316202_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450537/5316202_150x113.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450537/5316202_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450537/5316202_150x113.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450537/5316202_100x75.jpg","original":{"type":"Original","fileSize":"4506","resolutionX":"150","resolutionY":"113","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450537/5316202_150x113.jpg"},"large":{"type":"Large","fileSize":"4506","resolutionX":"150","resolutionY":"113","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450537/5316202_150x113.jpg"},"small":{"type":"Small","fileSize":"3170","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450537/5316202_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2450539":{"animalID":"2450539","animalOrgID":"240","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Tricolor (Tan/Brown & Black & White)","animalColorID":"37","animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><span mce_style=\"color: #ff0000;\" style=\"color: rgb(255, 0, 0);\">ADOPTED<br></span>Sweet Loving Social and Great with kids and dogs<br mce_bogus=\"1\"></div>","animalDescriptionPlain":"ADOPTEDSweet Loving Social and Great with kids and dogs","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"60491","animalMicrochipped":"No","animalMixedBreed":"","animalName":"ARRIVING 5/22","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"Yes","animalOKWithKids":"Yes","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"ARRIVING 5/22 Tricolor (Tan/Brown & Black & White) Male Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450539/5316204_100x75.jpg","animalUptodate":"","animalUpdatedDate":"5/28/2010 2:42 PM","animalUrl":"http://tlcanimalshelter.rescuegroups.org/animals/detail?AnimalID=2450539","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"5316204","mediaOrder":"1","lastUpdated":"5/20/2010 7:04 PM","fileSize":"14837","resolutionX":"256","resolutionY":"193","fileNameFullsize":"5316204_256x193.jpg","fileNameThumbnail":"5316204_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450539/5316204_256x193.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450539/5316204_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450539/5316204_256x193.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450539/5316204_100x75.jpg","original":{"type":"Original","fileSize":"14837","resolutionX":"256","resolutionY":"193","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450539/5316204_256x193.jpg"},"large":{"type":"Large","fileSize":"14837","resolutionX":"256","resolutionY":"193","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450539/5316204_256x193.jpg"},"small":{"type":"Small","fileSize":"3177","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/240/pictures/animals/2450/2450539/5316204_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2469911":{"animalID":"2469911","animalOrgID":"1332","animalActivityLevel":"","animalAdoptionFee":null,"animalAltered":"Yes","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><br><b>All GCRR Dogs are tested for temperament, completely vetted, on heartworm preventative, microchipped, dog friendly, and come with a 30 day FREE insurance policy!! We can cat test and kid test any dog, please ask!<br><br>Can't adopt me? Why not sponsor! Become a Doggie Guardian Angel today! Our medical bills are at an all-time high and even a $5 donation can help take some of my friends off the streets, treat their wounds and heal their hearts. Please think about a tax-deductible donation today! Thanks for helping us help all the deserving dogs.<br><form target=\"_blank\" action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><br><input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\"><br><input type=\"hidden\" name=\"hosted_button_id\" value=\"4579426\"><br><input type=\"image\" src=\"https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\"><br><img alt=\"\" border=\"0\" src=\"https://www.paypal.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\"><br></form></b></div>","animalDescriptionPlain":"All GCRR Dogs are tested for temperament, completely vetted, on heartworm preventative, microchipped, dog friendly, and come with a 30 day FREE insurance policy!! We can cat test and kid test any dog, please ask!Can't adopt me? Why not sponsor! Become a Doggie Guardian Angel today! Our medical bills are at an all-time high and even a $5 donation can help take some of my friends off the streets, treat their wounds and heal their hearts. Please think about a tax-deductible donation today! Thanks for helping us help all the deserving dogs.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"31014","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Brownie","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Brownie Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369424_100x68.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"http://gcrr.rescuegroups.org/animals/detail?AnimalID=2469911","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"5369424","mediaOrder":"1","lastUpdated":"5/27/2010 6:16 PM","fileSize":"51449","resolutionX":"500","resolutionY":"342","fileNameFullsize":"5369424_500x342.jpg","fileNameThumbnail":"5369424_100x68.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369424_500x342.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369424_100x68.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369424_500x342.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369424_100x68.jpg","original":{"type":"Original","fileSize":"51449","resolutionX":"500","resolutionY":"342","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369424_500x342.jpg"},"large":{"type":"Large","fileSize":"51449","resolutionX":"500","resolutionY":"342","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369424_500x342.jpg"},"small":{"type":"Small","fileSize":"2764","resolutionX":"100","resolutionY":"68","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369424_100x68.jpg"}},{"mediaID":"5369425","mediaOrder":"2","lastUpdated":"5/27/2010 6:16 PM","fileSize":"36310","resolutionX":"500","resolutionY":"375","fileNameFullsize":"5369425_500x375.jpg","fileNameThumbnail":"5369425_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369425_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369425_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369425_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369425_100x75.jpg","original":{"type":"Original","fileSize":"36310","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369425_500x375.jpg"},"large":{"type":"Large","fileSize":"36310","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369425_500x375.jpg"},"small":{"type":"Small","fileSize":"2984","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369425_100x75.jpg"}},{"mediaID":"5369426","mediaOrder":"3","lastUpdated":"5/27/2010 6:16 PM","fileSize":"34966","resolutionX":"500","resolutionY":"375","fileNameFullsize":"5369426_500x375.jpg","fileNameThumbnail":"5369426_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369426_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369426_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369426_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369426_100x75.jpg","original":{"type":"Original","fileSize":"34966","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369426_500x375.jpg"},"large":{"type":"Large","fileSize":"34966","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369426_500x375.jpg"},"small":{"type":"Small","fileSize":"2869","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1332/pictures/animals/2469/2469911/5369426_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"258166":{"animalID":"258166","animalOrgID":"1239","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"Yes","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Meet Quinn! Quinn has personality PLUS!. Quinn is searching for just the right person to become her new best friend. The screening process is rigorous, so be prepared. Quinn would like a person that appreciates her sparkling companionship. Her new friend should be someone that is ready to do some really fun stuff . Quinn is lively, active and has a terrific sense of humor. Quinn is crate trained and housebroken. She has wonderful house manners and is a perfect dog. Quinn is good with other dogs and loves people of all sizes. Cats are just a little too much fun for Quinn, so we would advise against cats. Quinn would love a soft bed, and a warm coat of her very own. Apply with ROSA'S to become Quinn's best friend.</div>","animalDescriptionPlain":"Meet Quinn! Quinn has personality PLUS!. Quinn is searching for just the right person to become her new best friend. The screening process is rigorous, so be prepared. Quinn would like a person that appreciates her sparkling companionship. Her new friend should be someone that is ready to do some really fun stuff . Quinn is lively, active and has a terrific sense of humor. Quinn is crate trained and housebroken. She has wonderful house manners and is a perfect dog. Quinn is good with other dogs and loves people of all sizes. Cats are just a little too much fun for Quinn, so we would advise against cats. Quinn would love a soft bed, and a warm coat of her very own. Apply with ROSA'S to become Quinn's best friend.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"41001","animalMicrochipped":"No","animalMixedBreed":"No","animalName":"Quinn","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"No","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Quinn Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448272_100x125.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"http://rosas.rescuegroups.org/animals/detail?AnimalID=258166","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"448272","mediaOrder":"1","lastUpdated":"8/9/2007 5:50 PM","fileSize":"37820","resolutionX":"400","resolutionY":"500","fileNameFullsize":"448272_400x500.jpg","fileNameThumbnail":"448272_100x125.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448272_400x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448272_100x125.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448272_400x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448272_100x125.jpg","original":{"type":"Original","fileSize":"37820","resolutionX":"400","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448272_400x500.jpg"},"large":{"type":"Large","fileSize":"37820","resolutionX":"400","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448272_400x500.jpg"},"small":{"type":"Small","fileSize":"4356","resolutionX":"100","resolutionY":"125","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448272_100x125.jpg"}},{"mediaID":"448273","mediaOrder":"2","lastUpdated":"8/9/2007 5:50 PM","fileSize":"33727","resolutionX":"294","resolutionY":"500","fileNameFullsize":"448273_294x500.jpg","fileNameThumbnail":"448273_100x170.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448273_294x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448273_100x170.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448273_294x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448273_100x170.jpg","original":{"type":"Original","fileSize":"33727","resolutionX":"294","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448273_294x500.jpg"},"large":{"type":"Large","fileSize":"33727","resolutionX":"294","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448273_294x500.jpg"},"small":{"type":"Small","fileSize":"6111","resolutionX":"100","resolutionY":"170","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448273_100x170.jpg"}},{"mediaID":"448274","mediaOrder":"3","lastUpdated":"8/9/2007 5:50 PM","fileSize":"45958","resolutionX":"400","resolutionY":"500","fileNameFullsize":"448274_400x500.jpg","fileNameThumbnail":"448274_100x125.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448274_400x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448274_100x125.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448274_400x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448274_100x125.jpg","original":{"type":"Original","fileSize":"45958","resolutionX":"400","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448274_400x500.jpg"},"large":{"type":"Large","fileSize":"45958","resolutionX":"400","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448274_400x500.jpg"},"small":{"type":"Small","fileSize":"5530","resolutionX":"100","resolutionY":"125","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1239/pictures/animals/258/258166/448274_100x125.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"268197":{"animalID":"268197","animalOrgID":"1233","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Brodie is a happy, outgoing Corgi, with a continual smile on his face. He loves people, especially children. He greets everyone as a friend; no one is a stranger to Brodie. \r \r <p>\r Brodie is an alpha dog, who commands respect from the other critters in the household. We think he would do best in a household without other dogs to give him grief. He wants to spend his time with people, not other dogs. \r <p>\r He is an intelligent dog, listens attentively when you talk to him, and is anxious to please. He would be the star student in an obedience class.\r <p>\r <p>\r The adoption fee for Brodie is $200.00. </div>","animalDescriptionPlain":"Brodie is a happy, outgoing Corgi, with a continual smile on his face. He loves people, especially children. He greets everyone as a friend; no one is a stranger to Brodie. \r \r \r Brodie is an alpha dog, who commands respect from the other critters in the household. We think he would do best in a household without other dogs to give him grief. He wants to spend his time with people, not other dogs. \r \r He is an intelligent dog, listens attentively when you talk to him, and is anxious to please. He would be the star student in an obedience class.\r \r \r The adoption fee for Brodie is $200.00. ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"98632","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Brodie: ADOPTED","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"LIL-001","animalSearchString":"Brodie: ADOPTED Male Medium LIL-001 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469113_100x102.jpg","animalUptodate":"Yes","animalUpdatedDate":"10/21/2013 2:01 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"469113","mediaOrder":"1","lastUpdated":"10/19/2013 8:20 PM","fileSize":"34564","resolutionX":"304","resolutionY":"311","fileNameFullsize":"469113_304x311.jpg","fileNameThumbnail":"469113_100x102.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469113_304x311.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469113_100x102.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469113_304x311.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469113_100x102.jpg","original":{"type":"Original","fileSize":"34564","resolutionX":"304","resolutionY":"311","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469113_304x311.jpg"},"large":{"type":"Large","fileSize":"34564","resolutionX":"304","resolutionY":"311","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469113_304x311.jpg"},"small":{"type":"Small","fileSize":"3353","resolutionX":"100","resolutionY":"102","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469113_100x102.jpg"}},{"mediaID":"469114","mediaOrder":"2","lastUpdated":"10/19/2013 8:20 PM","fileSize":"41475","resolutionX":"426","resolutionY":"328","fileNameFullsize":"469114_426x328.jpg","fileNameThumbnail":"469114_100x76.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469114_426x328.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469114_100x76.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469114_426x328.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469114_100x76.jpg","original":{"type":"Original","fileSize":"41475","resolutionX":"426","resolutionY":"328","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469114_426x328.jpg"},"large":{"type":"Large","fileSize":"41475","resolutionX":"426","resolutionY":"328","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469114_426x328.jpg"},"small":{"type":"Small","fileSize":"2588","resolutionX":"100","resolutionY":"76","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469114_100x76.jpg"}},{"mediaID":"469115","mediaOrder":"3","lastUpdated":"10/19/2013 8:20 PM","fileSize":"44335","resolutionX":"401","resolutionY":"404","fileNameFullsize":"469115_401x404.jpg","fileNameThumbnail":"469115_100x100.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469115_401x404.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469115_100x100.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469115_401x404.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469115_100x100.jpg","original":{"type":"Original","fileSize":"44335","resolutionX":"401","resolutionY":"404","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469115_401x404.jpg"},"large":{"type":"Large","fileSize":"44335","resolutionX":"401","resolutionY":"404","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469115_401x404.jpg"},"small":{"type":"Small","fileSize":"3077","resolutionX":"100","resolutionY":"100","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1233/pictures/animals/268/268197/469115_100x100.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2803816":{"animalID":"2803816","animalOrgID":"4311","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Phrenchie is NOT at the shelter. Please contact his foster mom at the address provided below.<br /><br /> This sweet 9 year old corgi is an amazing little guy. He is good with other dogs, cats and loves to hang out with people. Phrenchie has a friendly disposition and wants to find his forever home! <br /><br /> If you are interested in phrenchie please email me at adoptfosters@gmail.com <br /><br /><i>(Posted on 05/09/09 by td)</i><br /><br /><br /><b>PAWS, the Philadelphia Animal Welfare Society,</b> is a 501(c)3 non-profit animal rescue organization. PAWS pulls at-risk animals from the City of Philadelphias animal control shelter and adopts them out, either from our adoption center (located at 2nd and Arch Streets), from one of our adoption locations at area PETCO and PetSmart stores, or from our network of foster homes.<br /><br /><br />PAWS is dedicated to saving the lives of Philadelphias homeless, abandoned and unwanted animals and is working to make Philadelphia a city in which every healthy and treatable pet is guaranteed a home.<br /><br /><br /><font><strong>When you adopt a pet from PAWS you truly save a life!</strong></font><br /><br />PAWS&#39; Adoption Center in Old City is open Monday-Saturday from 11 a.m. to 7 p.m. and Sunday from 11 a.m. to 6 p.m. Please reference this animal&#39;s <strong>ID NUMBER</strong> when inquiring about this pet. <br /><br />All animals adopted from PAWS are up-to-date on age-appropriate vaccinations, spayed/neutered, and microchipped. Adoption fees are as follows: $60 for dogs, $50 for cats over 6 months of age, and $75 for cats under 6 months of age.<br /><br />Please visit our web site, <a href=\"http://www.phillypaws.org\" target=\"_blank\">www.phillypaws.org</a>, for our full calendar of adoption events throughout the region, and for more information on adopting, fostering, volunteering, or donating.<br /><br /></div>","animalDescriptionPlain":"Phrenchie is NOT at the shelter. Please contact his foster mom at the address provided below. This sweet 9 year old corgi is an amazing little guy. He is good with other dogs, cats and loves to hang out with people. Phrenchie has a friendly disposition and wants to find his forever home! If you are interested in phrenchie please email me at adoptfosters@gmail.com (Posted on 05/09/09 by td)PAWS, the Philadelphia Animal Welfare Society, is a 501(c)3 non-profit animal rescue organization. PAWS pulls at-risk animals from the City of Philadelphias animal control shelter and adopts them out, either from our adoption center (located at 2nd and Arch Streets), from one of our adoption locations at area PETCO and PetSmart stores, or from our network of foster homes.PAWS is dedicated to saving the lives of Philadelphias homeless, abandoned and unwanted animals and is working to make Philadelphia a city in which every healthy and treatable pet is guaranteed a home.When you adopt a pet from PAWS you truly save a life!PAWS&#39; Adoption Center in Old City is open Monday-Saturday from 11 a.m. to 7 p.m. and Sunday from 11 a.m. to 6 p.m. Please reference this animal&#39;s ID NUMBER when inquiring about this pet. All animals adopted from PAWS are up-to-date on age-appropriate vaccinations, spayed/neutered, and microchipped. Adoption fees are as follows: $60 for dogs, $50 for cats over 6 months of age, and $75 for cats under 6 months of age.Please visit our web site, www.phillypaws.org, for our full calendar of adoption events throughout the region, and for more information on adopting, fostering, volunteering, or donating.","animalDistinguishingMarks":"","animalEarType":"Natural/Uncropped","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Senior","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"19106","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Phrenchie","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"A07609909 - Foster Care","animalSearchString":"Phrenchie Male Medium A07609909 - Foster Care Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037260_100x132.jpg","animalUptodate":"Yes","animalUpdatedDate":"8/2/2011 2:58 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"7037260","mediaOrder":"1","lastUpdated":"9/20/2010 4:25 PM","fileSize":"12315","resolutionX":"240","resolutionY":"319","fileNameFullsize":"7037260_240x319.jpg","fileNameThumbnail":"7037260_100x132.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037260_240x319.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037260_100x132.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037260_240x319.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037260_100x132.jpg","original":{"type":"Original","fileSize":"12315","resolutionX":"240","resolutionY":"319","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037260_240x319.jpg"},"large":{"type":"Large","fileSize":"12315","resolutionX":"240","resolutionY":"319","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037260_240x319.jpg"},"small":{"type":"Small","fileSize":"3789","resolutionX":"100","resolutionY":"132","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037260_100x132.jpg"}},{"mediaID":"7037261","mediaOrder":"2","lastUpdated":"9/20/2010 4:25 PM","fileSize":"7642","resolutionX":"240","resolutionY":"179","fileNameFullsize":"7037261_240x179.jpg","fileNameThumbnail":"7037261_100x74.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037261_240x179.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037261_100x74.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037261_240x179.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037261_100x74.jpg","original":{"type":"Original","fileSize":"7642","resolutionX":"240","resolutionY":"179","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037261_240x179.jpg"},"large":{"type":"Large","fileSize":"7642","resolutionX":"240","resolutionY":"179","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037261_240x179.jpg"},"small":{"type":"Small","fileSize":"2535","resolutionX":"100","resolutionY":"74","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037261_100x74.jpg"}},{"mediaID":"7037262","mediaOrder":"3","lastUpdated":"9/20/2010 4:25 PM","fileSize":"7681","resolutionX":"240","resolutionY":"180","fileNameFullsize":"7037262_240x180.jpg","fileNameThumbnail":"7037262_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037262_240x180.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037262_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037262_240x180.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037262_100x75.jpg","original":{"type":"Original","fileSize":"7681","resolutionX":"240","resolutionY":"180","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037262_240x180.jpg"},"large":{"type":"Large","fileSize":"7681","resolutionX":"240","resolutionY":"180","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037262_240x180.jpg"},"small":{"type":"Small","fileSize":"2518","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2803/2803816/7037262_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2822977":{"animalID":"2822977","animalOrgID":"4311","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Elska is a happy little corgi looking for a new family to call her own. Shes an affectionate sweetheart who follows you around the house and loves to give kisses. When you come home, she greets you with her prancing dog hops and a big smile. Elska is the model of a loyal, eager-to-please dog. She deserves a best friend who will show her the same loyalty and love. <br /><br /> Elska loves to go on walks and make new friends in the neighborhood. She seems to like everyone she meets, including small children. A perfect day for Elska would involve a nice leisurely walk, lots of love and attention, a fun roll in the grass, and maybe dinner at a sidewalk caf. <br /><br /> Elska is cat friendly, unless the cats try to take her dinner; she is a little defensive of her food. Otherwise, shes very gentle with the kitties. Shes actually a little intimidated by cats that have an attitude. As for other dogs, she gets along well with dogs that are polite to her. However, she gets defensive when dogs are too pushy or jumpy. If you have a dog, we would need to do a dog meet-up to make sure everyone gets along. <br /><br /> Elska is a bit portly right now okay, make that obese. But on the inside, theres a fit, perky dog whos ready to come out and play! She has already made tremendous progress on her new diet and exercise plan. She just needs a dedicated family to keep her on the path to healthy living. <br /><br /> Elska is being fostered through PAWS. She is up to date on shots, and she will be spayed and microchipped before adoption. The PAWS adoption fee is $60, though additional donations are always welcome. If youd like to meet her, please email her foster mom at jmacnaug@yahoo.com. An application and references will be required. Thanks for looking! <br /><br /><i>(Posted on 05/20/09 by td)</i><br /><br /><br /><b>PAWS, the Philadelphia Animal Welfare Society,</b> is a 501(c)3 non-profit animal rescue organization. PAWS pulls at-risk animals from the City of Philadelphias animal control shelter and adopts them out, either from our adoption center (located at 2nd and Arch Streets), from one of our adoption locations at area PETCO and PetSmart stores, or from our network of foster homes.<br /><br /><br />PAWS is dedicated to saving the lives of Philadelphias homeless, abandoned and unwanted animals and is working to make Philadelphia a city in which every healthy and treatable pet is guaranteed a home.<br /><br /><br /><font><strong>When you adopt a pet from PAWS you truly save a life!</strong></font><br /><br />PAWS&#39; Adoption Center in Old City is open Monday-Saturday from 11 a.m. to 7 p.m. and Sunday from 11 a.m. to 6 p.m. Please reference this animal&#39;s <strong>ID NUMBER</strong> when inquiring about this pet. <br /><br />All animals adopted from PAWS are up-to-date on age-appropriate vaccinations, spayed/neutered, and microchipped. Adoption fees are as follows: $60 for dogs, $50 for cats over 6 months of age, and $75 for cats under 6 months of age.<br /><br />Please visit our web site, <a href=\"http://www.phillypaws.org\" target=\"_blank\">www.phillypaws.org</a>, for our full calendar of adoption events throughout the region, and for more information on adopting, fostering, volunteering, or donating.<br /><br /></div>","animalDescriptionPlain":"Elska is a happy little corgi looking for a new family to call her own. Shes an affectionate sweetheart who follows you around the house and loves to give kisses. When you come home, she greets you with her prancing dog hops and a big smile. Elska is the model of a loyal, eager-to-please dog. She deserves a best friend who will show her the same loyalty and love. Elska loves to go on walks and make new friends in the neighborhood. She seems to like everyone she meets, including small children. A perfect day for Elska would involve a nice leisurely walk, lots of love and attention, a fun roll in the grass, and maybe dinner at a sidewalk caf. Elska is cat friendly, unless the cats try to take her dinner; she is a little defensive of her food. Otherwise, shes very gentle with the kitties. Shes actually a little intimidated by cats that have an attitude. As for other dogs, she gets along well with dogs that are polite to her. However, she gets defensive when dogs are too pushy or jumpy. If you have a dog, we would need to do a dog meet-up to make sure everyone gets along. Elska is a bit portly right now okay, make that obese. But on the inside, theres a fit, perky dog whos ready to come out and play! She has already made tremendous progress on her new diet and exercise plan. She just needs a dedicated family to keep her on the path to healthy living. Elska is being fostered through PAWS. She is up to date on shots, and she will be spayed and microchipped before adoption. The PAWS adoption fee is $60, though additional donations are always welcome. If youd like to meet her, please email her foster mom at jmacnaug@yahoo.com. An application and references will be required. Thanks for looking! (Posted on 05/20/09 by td)PAWS, the Philadelphia Animal Welfare Society, is a 501(c)3 non-profit animal rescue organization. PAWS pulls at-risk animals from the City of Philadelphias animal control shelter and adopts them out, either from our adoption center (located at 2nd and Arch Streets), from one of our adoption locations at area PETCO and PetSmart stores, or from our network of foster homes.PAWS is dedicated to saving the lives of Philadelphias homeless, abandoned and unwanted animals and is working to make Philadelphia a city in which every healthy and treatable pet is guaranteed a home.When you adopt a pet from PAWS you truly save a life!PAWS&#39; Adoption Center in Old City is open Monday-Saturday from 11 a.m. to 7 p.m. and Sunday from 11 a.m. to 6 p.m. Please reference this animal&#39;s ID NUMBER when inquiring about this pet. All animals adopted from PAWS are up-to-date on age-appropriate vaccinations, spayed/neutered, and microchipped. Adoption fees are as follows: $60 for dogs, $50 for cats over 6 months of age, and $75 for cats under 6 months of age.Please visit our web site, www.phillypaws.org, for our full calendar of adoption events throughout the region, and for more information on adopting, fostering, volunteering, or donating.","animalDistinguishingMarks":"","animalEarType":"Natural/Uncropped","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"19106","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Elska-ADOPTED!","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"A07612435","animalSearchString":"Elska-ADOPTED! Female Medium A07612435 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080385_100x126.jpg","animalUptodate":"Yes","animalUpdatedDate":"8/2/2011 2:58 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"7080385","mediaOrder":"1","lastUpdated":"9/28/2010 10:28 AM","fileSize":"4420","resolutionX":"126","resolutionY":"160","fileNameFullsize":"7080385_126x160.jpg","fileNameThumbnail":"7080385_100x126.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080385_126x160.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080385_100x126.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080385_126x160.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080385_100x126.jpg","original":{"type":"Original","fileSize":"4420","resolutionX":"126","resolutionY":"160","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080385_126x160.jpg"},"large":{"type":"Large","fileSize":"4420","resolutionX":"126","resolutionY":"160","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080385_126x160.jpg"},"small":{"type":"Small","fileSize":"3305","resolutionX":"100","resolutionY":"126","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080385_100x126.jpg"}},{"mediaID":"7080386","mediaOrder":"2","lastUpdated":"9/28/2010 10:28 AM","fileSize":"3791","resolutionX":"126","resolutionY":"93","fileNameFullsize":"7080386_126x93.jpg","fileNameThumbnail":"7080386_100x74.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080386_126x93.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080386_100x74.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080386_126x93.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080386_100x74.jpg","original":{"type":"Original","fileSize":"3791","resolutionX":"126","resolutionY":"93","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080386_126x93.jpg"},"large":{"type":"Large","fileSize":"3791","resolutionX":"126","resolutionY":"93","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080386_126x93.jpg"},"small":{"type":"Small","fileSize":"2833","resolutionX":"100","resolutionY":"74","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080386_100x74.jpg"}},{"mediaID":"7080387","mediaOrder":"3","lastUpdated":"9/28/2010 10:28 AM","fileSize":"4313","resolutionX":"126","resolutionY":"99","fileNameFullsize":"7080387_126x99.jpg","fileNameThumbnail":"7080387_100x78.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080387_126x99.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080387_100x78.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080387_126x99.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080387_100x78.jpg","original":{"type":"Original","fileSize":"4313","resolutionX":"126","resolutionY":"99","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080387_126x99.jpg"},"large":{"type":"Large","fileSize":"4313","resolutionX":"126","resolutionY":"99","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080387_126x99.jpg"},"small":{"type":"Small","fileSize":"3130","resolutionX":"100","resolutionY":"78","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4311/pictures/animals/2822/2822977/7080387_100x78.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"2932440":{"animalID":"2932440","animalOrgID":"3344","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"","animalDescriptionPlain":"","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"","animalGeneralSizePotential":"","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"93725","animalMicrochipped":"","animalMixedBreed":"","animalName":"Aubrey","animalSpecialneeds":"","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Aubrey 11178 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"Pounds","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"","animalUptodate":"","animalUpdatedDate":"1/5/2015 5:23 PM","animalUrl":"http://act.rescuegroups.org/animals/detail?AnimalID=2932440","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[],"animalVideos":[],"animalVideoUrls":[]},"302664":{"animalID":"302664","animalOrgID":"1333","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"Yes","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Hi, my name is Lady. I'm a beautiful pure bred Corgi. I'm a very friendly girl who loves people put would prefer to be an only dog. My human mom died in a horrible accident and that is how I ended up at Happy Tails Rescue. If you would like more information on me please give us a call or send an email.</div>","animalDescriptionPlain":"Hi, my name is Lady. I'm a beautiful pure bred Corgi. I'm a very friendly girl who loves people put would prefer to be an only dog. My human mom died in a horrible accident and that is how I ended up at Happy Tails Rescue. If you would like more information on me please give us a call or send an email.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"55311","animalMicrochipped":"No","animalMixedBreed":"No","animalName":"Lady","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"No","animalOKWithKids":"No","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Lady Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/1333/pictures/animals/302/302664/587918_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"http://www.tailsrescue.org/animals/detail?AnimalID=302664","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"587918","mediaOrder":"1","lastUpdated":"9/14/2007 11:24 PM","fileSize":"56230","resolutionX":"500","resolutionY":"375","fileNameFullsize":"587918_500x375.jpg","fileNameThumbnail":"587918_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1333/pictures/animals/302/302664/587918_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1333/pictures/animals/302/302664/587918_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1333/pictures/animals/302/302664/587918_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1333/pictures/animals/302/302664/587918_100x75.jpg","original":{"type":"Original","fileSize":"56230","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1333/pictures/animals/302/302664/587918_500x375.jpg"},"large":{"type":"Large","fileSize":"56230","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1333/pictures/animals/302/302664/587918_500x375.jpg"},"small":{"type":"Small","fileSize":"3873","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1333/pictures/animals/302/302664/587918_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"302858":{"animalID":"302858","animalOrgID":"1333","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"Yes","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Please Remember:<br><br><p>Happy Tails Rescue can only adopt to people who live within a 60 mile radius of the Twin Cities. <u><b>WE DO NOT ADOPT OUT OF THE STATE OF MINNESOTA</u></b>. If you would like more information on this, please <b>read</b> our homepage.<br><br><p>All of our cats and dogs are INDOOR pets and are NOT to be left outside unattended (even in a fenced yard), or running loose! \r New to the group, 7 months old. Pembrook Welsh corgi. Sweet,and cute as a bug. 13 pounds of kisses. sable and white in color. I would not be good ,where there is another dog and small children. Too much action, tends to make me over zealous. And I don't want to be returned due to nipping. It would be very good for someone to know the breed, that adopts me. Call for more information.\r Sherry 763-493-9572</div>","animalDescriptionPlain":"Please Remember:Happy Tails Rescue can only adopt to people who live within a 60 mile radius of the Twin Cities. WE DO NOT ADOPT OUT OF THE STATE OF MINNESOTA. If you would like more information on this, please read our homepage.All of our cats and dogs are INDOOR pets and are NOT to be left outside unattended (even in a fenced yard), or running loose! \r New to the group, 7 months old. Pembrook Welsh corgi. Sweet,and cute as a bug. 13 pounds of kisses. sable and white in color. I would not be good ,where there is another dog and small children. Too much action, tends to make me over zealous. And I don't want to be returned due to nipping. It would be very good for someone to know the breed, that adopts me. Call for more information.\r Sherry 763-493-9572","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Baby","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"55311","animalMicrochipped":"No","animalMixedBreed":"No","animalName":"Roxie","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"No","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Roxie Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"http://www.tailsrescue.org/animals/detail?AnimalID=302858","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[],"animalVideos":[],"animalVideoUrls":[]},"3215873":{"animalID":"3215873","animalOrgID":"4018","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Tricolor (Tan/Brown & Black & White)","animalColorID":"37","animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><p>This wonderful lady was found running the streets in search of a new home. When she arrived here at the shelter we discovered a mirco-chip and were happy to call her people. Unfortunately for her, her people were not as happy as they had given her away the day before and could not remember to whom, or where the new person lived. So since her first family did not want her back, and we could not locate the second family we are hoping three times is going to be her lucky charm and she will find a great home.</p>\r\n<p>She is a very sweet, lady who liked to play and go for walks. She weighs in at 25.5 lbs, is a young adult and altered already. Plus she has a Micro-Chip implanted.&nbsp; She does great with small children and other dogs.</p>\r\n<p>She is ready for adoption today</p></div>","animalDescriptionPlain":"This wonderful lady was found running the streets in search of a new home. When she arrived here at the shelter we discovered a mirco-chip and were happy to call her people. Unfortunately for her, her people were not as happy as they had given her away the day before and could not remember to whom, or where the new person lived. So since her first family did not want her back, and we could not locate the second family we are hoping three times is going to be her lucky charm and she will find a great home.\r\nShe is a very sweet, lady who liked to play and go for walks. She weighs in at 25.5 lbs, is a young adult and altered already. Plus she has a Micro-Chip implanted.&nbsp; She does great with small children and other dogs.\r\nShe is ready for adoption today","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"75006","animalMicrochipped":"","animalMixedBreed":"","animalName":"Macy","animalSpecialneeds":"","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"23374","animalSearchString":"Macy Tricolor (Tan/Brown & Black & White) Medium 23374 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7917782_100x133.jpg","animalUptodate":"","animalUpdatedDate":"2/19/2011 9:34 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"joe.skenesky@cityofcarrollton.com","fosterFirstname":"Joe","fosterLastname":"","fosterName":"Joe","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":"United States","locationUrl":null,"locationName":"2247 Sandy Lake rd","locationPhone":null,"locationState":null,"locationPostalcode":"75006","animalPictures":[{"mediaID":"7917782","mediaOrder":"1","lastUpdated":"2/16/2011 6:17 PM","fileSize":"18140","resolutionX":"480","resolutionY":"640","fileNameFullsize":"7917782_480x640.jpg","fileNameThumbnail":"7917782_100x133.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7917782_480x640.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7917782_100x133.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7917782_480x640.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7917782_100x133.jpg","original":{"type":"Original","fileSize":"18140","resolutionX":"480","resolutionY":"640","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7917782_480x640.jpg"},"large":{"type":"Large","fileSize":"18140","resolutionX":"480","resolutionY":"640","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7917782_480x640.jpg"},"small":{"type":"Small","fileSize":"3182","resolutionX":"100","resolutionY":"133","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7917782_100x133.jpg"}},{"mediaID":"7922445","mediaOrder":"2","lastUpdated":"2/17/2011 5:58 PM","fileSize":"24830","resolutionX":"500","resolutionY":"375","fileNameFullsize":"7922445_500x375.jpg","fileNameThumbnail":"7922445_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7922445_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7922445_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7922445_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7922445_100x75.jpg","original":{"type":"Original","fileSize":"24830","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7922445_500x375.jpg"},"large":{"type":"Large","fileSize":"24830","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7922445_500x375.jpg"},"small":{"type":"Small","fileSize":"2376","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4018/pictures/animals/3215/3215873/7922445_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"3245446":{"animalID":"3245446","animalOrgID":"4362","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><p>Nellie and her brother Swidget were in a kill shelter. I discovered them there at the end of December, they were almost completely hairless from mange. Poor babies were going to be euthanized due to their condition. They were listed as chihuahuas and I admit, without hair, it's hard to tell what breed a tiny puppy is. So, I took them in and started treating them. Once their hair grew back, it became apparent that these babies are actually Corgis. They are both super cute babies and have completely recovered from the mange, and they are now ready for their new homes! They were 5-6 weeks old when I took them in at the end of Dec. If you are interested in adopting one of these babies, email <a href=\"mailto:kelley@adoptastrayrescue.com\">kelley@adoptastrayrescue.com</a></p></div>","animalDescriptionPlain":"Nellie and her brother Swidget were in a kill shelter. I discovered them there at the end of December, they were almost completely hairless from mange. Poor babies were going to be euthanized due to their condition. They were listed as chihuahuas and I admit, without hair, it's hard to tell what breed a tiny puppy is. So, I took them in and started treating them. Once their hair grew back, it became apparent that these babies are actually Corgis. They are both super cute babies and have completely recovered from the mange, and they are now ready for their new homes! They were 5-6 weeks old when I took them in at the end of Dec. If you are interested in adopting one of these babies, email kelley@adoptastrayrescue.com","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Baby","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"72019","animalMicrochipped":"","animalMixedBreed":"","animalName":"Nellie","animalSpecialneeds":"","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"Yes","animalOKWithDogs":"Yes","animalOKWithKids":"Yes","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Nellie Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981771_100x130.jpg","animalUptodate":"Yes","animalUpdatedDate":"10/22/2011 8:39 AM","animalUrl":"http://adoptastray.rescuegroups.org/animals/detail?AnimalID=3245446","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"7981771","mediaOrder":"1","lastUpdated":"3/1/2011 9:06 PM","fileSize":"43888","resolutionX":"500","resolutionY":"651","fileNameFullsize":"7981771_500x651.jpg","fileNameThumbnail":"7981771_100x130.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981771_500x651.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981771_100x130.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981771_500x651.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981771_100x130.jpg","original":{"type":"Original","fileSize":"43888","resolutionX":"500","resolutionY":"651","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981771_500x651.jpg"},"large":{"type":"Large","fileSize":"43888","resolutionX":"500","resolutionY":"651","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981771_500x651.jpg"},"small":{"type":"Small","fileSize":"3804","resolutionX":"100","resolutionY":"130","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981771_100x130.jpg"}},{"mediaID":"7981772","mediaOrder":"2","lastUpdated":"3/1/2011 9:06 PM","fileSize":"30648","resolutionX":"500","resolutionY":"453","fileNameFullsize":"7981772_500x453.jpg","fileNameThumbnail":"7981772_100x90.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981772_500x453.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981772_100x90.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981772_500x453.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981772_100x90.jpg","original":{"type":"Original","fileSize":"30648","resolutionX":"500","resolutionY":"453","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981772_500x453.jpg"},"large":{"type":"Large","fileSize":"30648","resolutionX":"500","resolutionY":"453","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981772_500x453.jpg"},"small":{"type":"Small","fileSize":"2794","resolutionX":"100","resolutionY":"90","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981772_100x90.jpg"}},{"mediaID":"7981773","mediaOrder":"3","lastUpdated":"3/1/2011 9:06 PM","fileSize":"44347","resolutionX":"500","resolutionY":"671","fileNameFullsize":"7981773_500x671.jpg","fileNameThumbnail":"7981773_100x134.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981773_500x671.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981773_100x134.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981773_500x671.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981773_100x134.jpg","original":{"type":"Original","fileSize":"44347","resolutionX":"500","resolutionY":"671","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981773_500x671.jpg"},"large":{"type":"Large","fileSize":"44347","resolutionX":"500","resolutionY":"671","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981773_500x671.jpg"},"small":{"type":"Small","fileSize":"3736","resolutionX":"100","resolutionY":"134","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245446/7981773_100x134.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"3245480":{"animalID":"3245480","animalOrgID":"4362","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><p>Swidget and his sister Nellie were in a kill shelter. I discovered them there at the end of December, they were almost completely hairless from mange. Poor babies were going to be euthanized due to their condition. They were listed as chihuahuas and I admit, without hair, it's hard to tell what breed a tiny puppy is. So, I took them in and started treating them. Once their hair grew back, it became apparent that these babies are actually Corgis. They are both super cute babies and have completely recovered from the mange, and they are now ready for their new homes! They were 5-6 weeks old when I took them in at the end of Dec. If you are interested in adopting one of these babies, email <a href=\"mailto:kelley@adoptastrayrescue.com\">kelley@adoptastrayrescue.com</a></p></div>","animalDescriptionPlain":"Swidget and his sister Nellie were in a kill shelter. I discovered them there at the end of December, they were almost completely hairless from mange. Poor babies were going to be euthanized due to their condition. They were listed as chihuahuas and I admit, without hair, it's hard to tell what breed a tiny puppy is. So, I took them in and started treating them. Once their hair grew back, it became apparent that these babies are actually Corgis. They are both super cute babies and have completely recovered from the mange, and they are now ready for their new homes! They were 5-6 weeks old when I took them in at the end of Dec. If you are interested in adopting one of these babies, email kelley@adoptastrayrescue.com","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Baby","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"72019","animalMicrochipped":"","animalMixedBreed":"","animalName":"Swidget","animalSpecialneeds":"","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"Yes","animalOKWithDogs":"Yes","animalOKWithKids":"Yes","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Swidget Male Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981875_100x132.jpg","animalUptodate":"Yes","animalUpdatedDate":"10/22/2011 8:39 AM","animalUrl":"http://adoptastray.rescuegroups.org/animals/detail?AnimalID=3245480","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"7981875","mediaOrder":"1","lastUpdated":"3/1/2011 9:42 PM","fileSize":"44470","resolutionX":"500","resolutionY":"661","fileNameFullsize":"7981875_500x661.jpg","fileNameThumbnail":"7981875_100x132.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981875_500x661.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981875_100x132.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981875_500x661.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981875_100x132.jpg","original":{"type":"Original","fileSize":"44470","resolutionX":"500","resolutionY":"661","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981875_500x661.jpg"},"large":{"type":"Large","fileSize":"44470","resolutionX":"500","resolutionY":"661","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981875_500x661.jpg"},"small":{"type":"Small","fileSize":"4024","resolutionX":"100","resolutionY":"132","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981875_100x132.jpg"}},{"mediaID":"7981876","mediaOrder":"2","lastUpdated":"3/1/2011 9:42 PM","fileSize":"24613","resolutionX":"500","resolutionY":"438","fileNameFullsize":"7981876_500x438.jpg","fileNameThumbnail":"7981876_100x87.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981876_500x438.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981876_100x87.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981876_500x438.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981876_100x87.jpg","original":{"type":"Original","fileSize":"24613","resolutionX":"500","resolutionY":"438","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981876_500x438.jpg"},"large":{"type":"Large","fileSize":"24613","resolutionX":"500","resolutionY":"438","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981876_500x438.jpg"},"small":{"type":"Small","fileSize":"2474","resolutionX":"100","resolutionY":"87","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981876_100x87.jpg"}},{"mediaID":"7981877","mediaOrder":"3","lastUpdated":"3/1/2011 9:42 PM","fileSize":"34550","resolutionX":"500","resolutionY":"418","fileNameFullsize":"7981877_500x418.jpg","fileNameThumbnail":"7981877_100x83.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981877_500x418.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981877_100x83.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981877_500x418.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981877_100x83.jpg","original":{"type":"Original","fileSize":"34550","resolutionX":"500","resolutionY":"418","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981877_500x418.jpg"},"large":{"type":"Large","fileSize":"34550","resolutionX":"500","resolutionY":"418","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981877_500x418.jpg"},"small":{"type":"Small","fileSize":"3109","resolutionX":"100","resolutionY":"83","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4362/pictures/animals/3245/3245480/7981877_100x83.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"3307085":{"animalID":"3307085","animalOrgID":"636","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"No","animalDescription":"<div class=\"rgDescription\"><p><span class=\"Title\">CHONCHIS&nbsp;-&nbsp;ID#A0658365</span> My name is Chonchis and I am a neutered male, brown and white Welsh Corgi - Cardigan mix. The shelter thinks I am about 7 years old. I weigh approximately 39 pounds. I have been at the shelter since Feb 28, 2011. HE is IN DANGER of EUTHANASIA at the North Central Shelter, please go DIRECTLY there to adopt!&nbsp;</p>\r\n<div>North Central Shelter&nbsp;</div>\r\n<div>3201 Lacy Street,&nbsp;</div>\r\n<div>Los Angeles, CA 90031&nbsp;</div>\r\n<div>888-4LAPET1 or 888-452-7381,&nbsp;</div>\r\n<div>FAX 213-847-0555&nbsp;</div>\r\n<div>HOURS OF PUBLIC OPERATION:&nbsp;</div>\r\n<div>Monday (Closed)&nbsp;</div>\r\n<div>Tuesday (8AM - 7PM)&nbsp;</div>\r\n<div>Wednesday (8AM - 5PM)&nbsp;</div>\r\n<div>Thursday (8AM - 7PM)&nbsp;</div>\r\n<div>Friday (8AM - 5PM)&nbsp;</div>\r\n<div>Saturday (8AM - 5PM)&nbsp;</div>\r\n<div>Sunday (11AM - 5PM)</div></div>","animalDescriptionPlain":"CHONCHIS&nbsp;-&nbsp;ID#A0658365 My name is Chonchis and I am a neutered male, brown and white Welsh Corgi - Cardigan mix. The shelter thinks I am about 7 years old. I weigh approximately 39 pounds. I have been at the shelter since Feb 28, 2011. HE is IN DANGER of EUTHANASIA at the North Central Shelter, please go DIRECTLY there to adopt!&nbsp;\r\nNorth Central Shelter&nbsp;\r\n3201 Lacy Street,&nbsp;\r\nLos Angeles, CA 90031&nbsp;\r\n888-4LAPET1 or 888-452-7381,&nbsp;\r\nFAX 213-847-0555&nbsp;\r\nHOURS OF PUBLIC OPERATION:&nbsp;\r\nMonday (Closed)&nbsp;\r\nTuesday (8AM - 7PM)&nbsp;\r\nWednesday (8AM - 5PM)&nbsp;\r\nThursday (8AM - 7PM)&nbsp;\r\nFriday (8AM - 5PM)&nbsp;\r\nSaturday (8AM - 5PM)&nbsp;\r\nSunday (11AM - 5PM)","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"90213","animalMicrochipped":"","animalMixedBreed":"","animalName":"A0658365 IS IN DANGER @ NORTH CENTRAL","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"A0658365 IS IN DANGER @ NORTH CENTRAL Male Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/3307/3307085/8117636_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"4/25/2011 4:00 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"8117636","mediaOrder":"1","lastUpdated":"3/24/2011 10:19 PM","fileSize":"41205","resolutionX":"500","resolutionY":"375","fileNameFullsize":"8117636_500x375.jpg","fileNameThumbnail":"8117636_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/3307/3307085/8117636_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/3307/3307085/8117636_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/3307/3307085/8117636_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/3307/3307085/8117636_100x75.jpg","original":{"type":"Original","fileSize":"41205","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/3307/3307085/8117636_500x375.jpg"},"large":{"type":"Large","fileSize":"41205","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/3307/3307085/8117636_500x375.jpg"},"small":{"type":"Small","fileSize":"3787","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/636/pictures/animals/3307/3307085/8117636_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"336585":{"animalID":"336585","animalOrgID":"788","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Mitzy's owners pretty much discarded her. She's a very sweet and even tempered girl that is absolutely no bother to anyone. Her owners gave up a gem of a dog.</div>","animalDescriptionPlain":"Mitzy's owners pretty much discarded her. She's a very sweet and even tempered girl that is absolutely no bother to anyone. Her owners gave up a gem of a dog.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Senior","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"33355","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Mitzy","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Mitzy Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/336/336585/673817_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"673817","mediaOrder":"1","lastUpdated":"10/31/2007 11:13 PM","fileSize":"24650","resolutionX":"500","resolutionY":"375","fileNameFullsize":"673817_500x375.jpg","fileNameThumbnail":"673817_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/336/336585/673817_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/336/336585/673817_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/336/336585/673817_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/336/336585/673817_100x75.jpg","original":{"type":"Original","fileSize":"24650","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/336/336585/673817_500x375.jpg"},"large":{"type":"Large","fileSize":"24650","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/336/336585/673817_500x375.jpg"},"small":{"type":"Small","fileSize":"2923","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/336/336585/673817_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"3373314":{"animalID":"3373314","animalOrgID":"3632","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><p>4/18/2011: I am a female Corgi around 7 years old. I am up to date on my vaccinations.</p></div>","animalDescriptionPlain":"4/18/2011: I am a female Corgi around 7 years old. I am up to date on my vaccinations.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"72401","animalMicrochipped":"","animalMixedBreed":"","animalName":"Corgi Female","animalSpecialneeds":"","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Corgi Female Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/3373/3373314/8274224_100x66.jpg","animalUptodate":"Yes","animalUpdatedDate":"7/2/2014 1:48 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"wanndat@fastdata.net","fosterFirstname":"Wannda","fosterLastname":"","fosterName":"Wannda","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"8274224","mediaOrder":"1","lastUpdated":"4/18/2011 2:24 PM","fileSize":"28311","resolutionX":"500","resolutionY":"333","fileNameFullsize":"8274224_500x333.jpg","fileNameThumbnail":"8274224_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/3373/3373314/8274224_500x333.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/3373/3373314/8274224_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/3373/3373314/8274224_500x333.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/3373/3373314/8274224_100x66.jpg","original":{"type":"Original","fileSize":"28311","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/3373/3373314/8274224_500x333.jpg"},"large":{"type":"Large","fileSize":"28311","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/3373/3373314/8274224_500x333.jpg"},"small":{"type":"Small","fileSize":"3244","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3632/pictures/animals/3373/3373314/8274224_100x66.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"338019":{"animalID":"338019","animalOrgID":"1524","animalActivityLevel":"","animalAdoptionFee":null,"animalAltered":"Yes","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Beamer is a bouncy, young corgi with a high energy personality. He needs a wooden fence to contain him, but is very playful and friendly. He gets along with other dogs his size.<br><br><br>HART's Adoption Schedule, Procedures, Applications & Fees are on our website www.hartoftexas.org. Call (214) 332-9535 for a pre-recorded message of this weeks events & locations for the adopt-a-pet functions. <br><br><br><br> To see more information about our animals <a href=?http://www.petfinder.org/pet.cgi?action=1&pet.Shelterid=TX269&preview=1\" target=\"_blank\">click here</a>! </div>","animalDescriptionPlain":"Beamer is a bouncy, young corgi with a high energy personality. He needs a wooden fence to contain him, but is very playful and friendly. He gets along with other dogs his size.HART's Adoption Schedule, Procedures, Applications & Fees are on our website www.hartoftexas.org. Call (214) 332-9535 for a pre-recorded message of this weeks events & locations for the adopt-a-pet functions. To see more information about our animals ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"75015","animalMicrochipped":"No","animalMixedBreed":"No","animalName":"Beamer","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"D4131","animalSearchString":"Beamer Male Medium D4131 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676393_100x77.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"http://hart.rescuegroups.org/animals/detail?AnimalID=338019","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"676393","mediaOrder":"1","lastUpdated":"11/2/2007 3:20 PM","fileSize":"42630","resolutionX":"500","resolutionY":"387","fileNameFullsize":"676393_500x387.jpg","fileNameThumbnail":"676393_100x77.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676393_500x387.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676393_100x77.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676393_500x387.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676393_100x77.jpg","original":{"type":"Original","fileSize":"42630","resolutionX":"500","resolutionY":"387","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676393_500x387.jpg"},"large":{"type":"Large","fileSize":"42630","resolutionX":"500","resolutionY":"387","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676393_500x387.jpg"},"small":{"type":"Small","fileSize":"3539","resolutionX":"100","resolutionY":"77","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676393_100x77.jpg"}},{"mediaID":"676394","mediaOrder":"2","lastUpdated":"11/2/2007 3:20 PM","fileSize":"27564","resolutionX":"500","resolutionY":"404","fileNameFullsize":"676394_500x404.jpg","fileNameThumbnail":"676394_100x80.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676394_500x404.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676394_100x80.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676394_500x404.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676394_100x80.jpg","original":{"type":"Original","fileSize":"27564","resolutionX":"500","resolutionY":"404","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676394_500x404.jpg"},"large":{"type":"Large","fileSize":"27564","resolutionX":"500","resolutionY":"404","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676394_500x404.jpg"},"small":{"type":"Small","fileSize":"2757","resolutionX":"100","resolutionY":"80","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1524/pictures/animals/338/338019/676394_100x80.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"3383953":{"animalID":"3383953","animalOrgID":"993","animalActivityLevel":"Moderately Active","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"4/30/2011","animalBirthdate":"4/18/2010","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"White with Red, Golden, Orange or Chestnut","animalColorID":"50","animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><div style=\"color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #ffffff; margin: 8px;\">\r\n<div style=\"text-align: center;\">\r\n<pre><span style=\"font-size: 14pt;\"><span style=\"background-color: #ffffff;\"><span style=\"color: #ff0000;\"><strong>URGENT: Will be put down <br />in 2 weeks if not rescued</strong><br /></span></span></span></pre>\r\n<pre><span style=\"background-color: #ff0000;\"><span style=\"font-size: 24pt;\"><span style=\"font-family: comic sans ms,sans-serif;\"><strong><span style=\"font-size: 14pt;\"><span style=\"background-color: #ffffff;\"><span style=\"color: #ff0000;\">Was the plea we received! </span></span></span></strong></span></span></span></pre>\r\n<pre><span style=\"background-color: #ff0000;\"><span style=\"font-size: 24pt;\"><span style=\"font-family: comic sans ms,sans-serif;\"><strong><span style=\"font-size: 14pt;\"><span style=\"background-color: #ffffff;\"><span style=\"color: #ff0000;\">Mars is not going to let that happen.</span></span></span></strong></span></span></span></pre>\r\n</div>\r\n<p style=\"font-family: Verdana, Arial, Helvetica, sans-serif;\">&nbsp;</p>\r\n<p style=\"font-family: Verdana, Arial, Helvetica, sans-serif;\"><strong><span style=\"color: #000000; font-family: comic sans ms,sans-serif; font-size: 14pt;\">Help us save this adorable brother and sister.&nbsp; Gracie and George were dropped of by their owner on his parent's farm and then he took off and left for good.&nbsp; His parents are unable to care for them anymore...</span></strong></p>\r\n<p style=\"font-family: Verdana, Arial, Helvetica, sans-serif;\"><strong><span style=\"color: #000000; font-family: comic sans ms,sans-serif; font-size: 14pt;\">George is looking for a home with a loving family where he will get the love and care he so deserves.</span></strong></p>\r\n<span style=\"font-size: 12pt;\"><span style=\"font-family: comic sans ms,sans-serif;\"><strong>To adopt George, please fill out an on-line application by clicking on the adoption button below.&nbsp; Thank you!</strong></span></span></div></div>","animalDescriptionPlain":"\r\n\r\nURGENT: Will be put down in 2 weeks if not rescued\r\nWas the plea we received! \r\nMars is not going to let that happen.\r\n\r\n&nbsp;\r\nHelp us save this adorable brother and sister.&nbsp; Gracie and George were dropped of by their owner on his parent's farm and then he took off and left for good.&nbsp; His parents are unable to care for them anymore...\r\nGeorge is looking for a home with a loving family where he will get the love and care he so deserves.\r\nTo adopt George, please fill out an on-line application by clicking on the adoption button below.&nbsp; Thank you!","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"55429","animalMicrochipped":"","animalMixedBreed":"","animalName":"George","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"Yes","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"4038","animalSearchString":"George White with Red, Golden, Orange or Chestnut Male Small 4038 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"25.0","animalSizePotential":"0.0","animalSizeUOM":"Pounds","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347914_100x150.jpg","animalUptodate":"","animalUpdatedDate":"4/17/2012 8:51 PM","animalUrl":"http://www.midwestanimalrescue.org/animals/detail?AnimalID=3383953","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"8347914","mediaOrder":"1","lastUpdated":"5/24/2011 12:19 PM","fileSize":"294613","resolutionX":"480","resolutionY":"720","fileNameFullsize":"8347914_480x720.jpg","fileNameThumbnail":"8347914_100x150.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347914_480x720.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347914_100x150.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347914_480x720.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347914_100x150.jpg","original":{"type":"Original","fileSize":"294613","resolutionX":"480","resolutionY":"720","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347914_480x720.jpg"},"large":{"type":"Large","fileSize":"294613","resolutionX":"480","resolutionY":"720","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347914_480x720.jpg"},"small":{"type":"Small","fileSize":"5116","resolutionX":"100","resolutionY":"150","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347914_100x150.jpg"}},{"mediaID":"8347915","mediaOrder":"2","lastUpdated":"5/24/2011 12:19 PM","fileSize":"269136","resolutionX":"480","resolutionY":"720","fileNameFullsize":"8347915_480x720.jpg","fileNameThumbnail":"8347915_100x150.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347915_480x720.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347915_100x150.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347915_480x720.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347915_100x150.jpg","original":{"type":"Original","fileSize":"269136","resolutionX":"480","resolutionY":"720","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347915_480x720.jpg"},"large":{"type":"Large","fileSize":"269136","resolutionX":"480","resolutionY":"720","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347915_480x720.jpg"},"small":{"type":"Small","fileSize":"4799","resolutionX":"100","resolutionY":"150","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347915_100x150.jpg"}},{"mediaID":"8347916","mediaOrder":"3","lastUpdated":"5/24/2011 12:19 PM","fileSize":"317619","resolutionX":"478","resolutionY":"720","fileNameFullsize":"8347916_478x720.jpg","fileNameThumbnail":"8347916_100x150.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347916_478x720.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347916_100x150.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347916_478x720.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347916_100x150.jpg","original":{"type":"Original","fileSize":"317619","resolutionX":"478","resolutionY":"720","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347916_478x720.jpg"},"large":{"type":"Large","fileSize":"317619","resolutionX":"478","resolutionY":"720","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347916_478x720.jpg"},"small":{"type":"Small","fileSize":"4951","resolutionX":"100","resolutionY":"150","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347916_100x150.jpg"}},{"mediaID":"8347917","mediaOrder":"4","lastUpdated":"5/24/2011 12:19 PM","fileSize":"305888","resolutionX":"478","resolutionY":"720","fileNameFullsize":"8347917_478x720.jpg","fileNameThumbnail":"8347917_100x150.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347917_478x720.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347917_100x150.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347917_478x720.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347917_100x150.jpg","original":{"type":"Original","fileSize":"305888","resolutionX":"478","resolutionY":"720","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347917_478x720.jpg"},"large":{"type":"Large","fileSize":"305888","resolutionX":"478","resolutionY":"720","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347917_478x720.jpg"},"small":{"type":"Small","fileSize":"4958","resolutionX":"100","resolutionY":"150","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8347917_100x150.jpg"}},{"mediaID":"8298240","mediaOrder":"5","lastUpdated":"5/24/2011 12:19 PM","fileSize":"42737","resolutionX":"500","resolutionY":"333","fileNameFullsize":"8298240_500x333.jpg","fileNameThumbnail":"8298240_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298240_500x333.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298240_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298240_500x333.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298240_100x66.jpg","original":{"type":"Original","fileSize":"42737","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298240_500x333.jpg"},"large":{"type":"Large","fileSize":"42737","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298240_500x333.jpg"},"small":{"type":"Small","fileSize":"3555","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298240_100x66.jpg"}},{"mediaID":"8298241","mediaOrder":"6","lastUpdated":"5/24/2011 12:19 PM","fileSize":"42273","resolutionX":"500","resolutionY":"333","fileNameFullsize":"8298241_500x333.jpg","fileNameThumbnail":"8298241_100x66.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298241_500x333.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298241_100x66.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298241_500x333.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298241_100x66.jpg","original":{"type":"Original","fileSize":"42273","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298241_500x333.jpg"},"large":{"type":"Large","fileSize":"42273","resolutionX":"500","resolutionY":"333","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298241_500x333.jpg"},"small":{"type":"Small","fileSize":"3284","resolutionX":"100","resolutionY":"66","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/993/pictures/animals/3383/3383953/8298241_100x66.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"3584586":{"animalID":"3584586","animalOrgID":"4800","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"Tricolor (Tan/Brown & Black & White)","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">ADOPTED! Thank you to all wanting to provide Austen with a loving home. PUP will hold the applications unless otherwise notified. Austen is our very, very sweet 2 year old, 26 pound, female Corgi. Austen's foster reports Austen is a very mellow, low maintenance girl. Her main goal in life seems to be laying at your feet and begging for a scratch behind the ears every now and then. She's extremely loyal and will follow you everywhere you go, but she's okay in a crate also. She enjoys taking short walks and rolling around in the grass (or on the carpet). As she's still a bit chubby she should probably learn to take longer walks. She's a little shy around new people but very, very sweet and getting better with strangers. Also, completely house broken.\r\n<br><br>\r\nDog friendly children 10 and older.\r\n<br><br>\r\nAdoption fee: $350.00\r\n<br><br>\r\nAusten is spayed and current on DHPP, Bordatella, Rabies and has been wormed, flea treated and microchipped.\r\n<br><br>\r\nIf you think you have room in your home and heart for this dog and you reside within Washington State, please go to our <a href=\"http://www.peopleunitedforpets.com/adoptadog.htm\" <b><b><font color=\"#FF0000\">Adoption Information</font></b><font color=\"#FF0000\"></b></font></a> page. There you will find more information and be able to fill out an adoption application.</div>","animalDescriptionPlain":"ADOPTED! Thank you to all wanting to provide Austen with a loving home. PUP will hold the applications unless otherwise notified. Austen is our very, very sweet 2 year old, 26 pound, female Corgi. Austen's foster reports Austen is a very mellow, low maintenance girl. Her main goal in life seems to be laying at your feet and begging for a scratch behind the ears every now and then. She's extremely loyal and will follow you everywhere you go, but she's okay in a crate also. She enjoys taking short walks and rolling around in the grass (or on the carpet). As she's still a bit chubby she should probably learn to take longer walks. She's a little shy around new people but very, very sweet and getting better with strangers. Also, completely house broken.\r\n\r\nDog friendly children 10 and older.\r\n\r\nAdoption fee: $350.00\r\n\r\nAusten is spayed and current on DHPP, Bordatella, Rabies and has been wormed, flea treated and microchipped.\r\n\r\nIf you think you have room in your home and heart for this dog and you reside within Washington State, please go to our ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"98027","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Austen-Adopted!","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"Yes","animalOKWithKids":"Yes","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Austen-Adopted! Tricolor (Tan/Brown & Black & White) Female Small Tricolor (Tan/Brown & Black & White) Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766561_100x82.jpg","animalUptodate":"Yes","animalUpdatedDate":"7/21/2011 9:20 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"8766561","mediaOrder":"1","lastUpdated":"6/30/2011 4:51 PM","fileSize":"63245","resolutionX":"336","resolutionY":"277","fileNameFullsize":"8766561_336x277.jpg","fileNameThumbnail":"8766561_100x82.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766561_336x277.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766561_100x82.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766561_336x277.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766561_100x82.jpg","original":{"type":"Original","fileSize":"63245","resolutionX":"336","resolutionY":"277","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766561_336x277.jpg"},"large":{"type":"Large","fileSize":"63245","resolutionX":"336","resolutionY":"277","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766561_336x277.jpg"},"small":{"type":"Small","fileSize":"3116","resolutionX":"100","resolutionY":"82","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766561_100x82.jpg"}},{"mediaID":"8766562","mediaOrder":"2","lastUpdated":"6/30/2011 4:51 PM","fileSize":"55664","resolutionX":"336","resolutionY":"238","fileNameFullsize":"8766562_336x238.jpg","fileNameThumbnail":"8766562_100x70.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766562_336x238.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766562_100x70.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766562_336x238.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766562_100x70.jpg","original":{"type":"Original","fileSize":"55664","resolutionX":"336","resolutionY":"238","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766562_336x238.jpg"},"large":{"type":"Large","fileSize":"55664","resolutionX":"336","resolutionY":"238","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766562_336x238.jpg"},"small":{"type":"Small","fileSize":"2811","resolutionX":"100","resolutionY":"70","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766562_100x70.jpg"}},{"mediaID":"8766563","mediaOrder":"3","lastUpdated":"6/30/2011 4:51 PM","fileSize":"64116","resolutionX":"336","resolutionY":"252","fileNameFullsize":"8766563_336x252.jpg","fileNameThumbnail":"8766563_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766563_336x252.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766563_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766563_336x252.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766563_100x75.jpg","original":{"type":"Original","fileSize":"64116","resolutionX":"336","resolutionY":"252","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766563_336x252.jpg"},"large":{"type":"Large","fileSize":"64116","resolutionX":"336","resolutionY":"252","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766563_336x252.jpg"},"small":{"type":"Small","fileSize":"3337","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4800/pictures/animals/3584/3584586/8766563_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"3611543":{"animalID":"3611543","animalOrgID":"788","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"Red/Golden/Orange/Chestnut with White","animalColorID":"33","animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><p>Alfie is 26 lbs. and about 6 yrs. old or so. He is a lovable and affectionate dog. He is playful and energetic, loves people, and loves to snuggle. His owner did not want to give him up but unfortunately, due to family health problems, finds it necessary to find him a new home. He is fine in an apartment or condo, and even better in a house with a yard. Alfie is very intelligent and understands many commands. He loves to play ball and fetch doggie toys. He is usually good with kids although he can become over excited when playing with them. He is housebroken and should be walked two or three times a day.</p>\r\n<p>Alfie's adoption fee is $150.</p>\r\n<p>&nbsp;</p></div>","animalDescriptionPlain":"Alfie is 26 lbs. and about 6 yrs. old or so. He is a lovable and affectionate dog. He is playful and energetic, loves people, and loves to snuggle. His owner did not want to give him up but unfortunately, due to family health problems, finds it necessary to find him a new home. He is fine in an apartment or condo, and even better in a house with a yard. Alfie is very intelligent and understands many commands. He loves to play ball and fetch doggie toys. He is usually good with kids although he can become over excited when playing with them. He is housebroken and should be walked two or three times a day.\r\nAlfie's adoption fee is $150.\r\n&nbsp;","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"33355","animalMicrochipped":"","animalMixedBreed":"","animalName":"Alfie","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"Yes","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Alfie Red/Golden/Orange/Chestnut with White Male Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831558_100x118.jpg","animalUptodate":"Yes","animalUpdatedDate":"7/28/2011 10:37 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"8831558","mediaOrder":"1","lastUpdated":"7/6/2011 9:27 PM","fileSize":"53652","resolutionX":"500","resolutionY":"593","fileNameFullsize":"8831558_500x593.jpg","fileNameThumbnail":"8831558_100x118.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831558_500x593.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831558_100x118.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831558_500x593.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831558_100x118.jpg","original":{"type":"Original","fileSize":"53652","resolutionX":"500","resolutionY":"593","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831558_500x593.jpg"},"large":{"type":"Large","fileSize":"53652","resolutionX":"500","resolutionY":"593","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831558_500x593.jpg"},"small":{"type":"Small","fileSize":"4267","resolutionX":"100","resolutionY":"118","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831558_100x118.jpg"}},{"mediaID":"8831559","mediaOrder":"2","lastUpdated":"7/6/2011 9:27 PM","fileSize":"48032","resolutionX":"500","resolutionY":"375","fileNameFullsize":"8831559_500x375.jpg","fileNameThumbnail":"8831559_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831559_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831559_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831559_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831559_100x75.jpg","original":{"type":"Original","fileSize":"48032","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831559_500x375.jpg"},"large":{"type":"Large","fileSize":"48032","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831559_500x375.jpg"},"small":{"type":"Small","fileSize":"3429","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831559_100x75.jpg"}},{"mediaID":"8831560","mediaOrder":"3","lastUpdated":"7/6/2011 9:27 PM","fileSize":"71063","resolutionX":"480","resolutionY":"340","fileNameFullsize":"8831560_480x340.jpg","fileNameThumbnail":"8831560_100x70.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831560_480x340.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831560_100x70.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831560_480x340.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831560_100x70.jpg","original":{"type":"Original","fileSize":"71063","resolutionX":"480","resolutionY":"340","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831560_480x340.jpg"},"large":{"type":"Large","fileSize":"71063","resolutionX":"480","resolutionY":"340","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831560_480x340.jpg"},"small":{"type":"Small","fileSize":"2861","resolutionX":"100","resolutionY":"70","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831560_100x70.jpg"}},{"mediaID":"8831561","mediaOrder":"4","lastUpdated":"7/6/2011 9:27 PM","fileSize":"53123","resolutionX":"500","resolutionY":"684","fileNameFullsize":"8831561_500x684.jpg","fileNameThumbnail":"8831561_100x136.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831561_500x684.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831561_100x136.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831561_500x684.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831561_100x136.jpg","original":{"type":"Original","fileSize":"53123","resolutionX":"500","resolutionY":"684","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831561_500x684.jpg"},"large":{"type":"Large","fileSize":"53123","resolutionX":"500","resolutionY":"684","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831561_500x684.jpg"},"small":{"type":"Small","fileSize":"4700","resolutionX":"100","resolutionY":"136","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/788/pictures/animals/3611/3611543/8831561_100x136.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"3619161":{"animalID":"3619161","animalOrgID":"4533","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><p>Hi! I&rsquo;m Yohan 3021.&nbsp; I came into SCRAPS 7-1-11.&nbsp; I am a NEUTERED corgi mix around 3 years old.&nbsp; I am so smart!&nbsp; I know SIT, DOWN, SHAKE, and SPEAK! &nbsp;I am really good at fetching too! Check out my video on Petfinder! I get along well with cats and dogs too.&nbsp; Come see me, maybe we can go hiking together this summer!</p>\r\n<p>Safer scores: all 1s, one 2</p>\r\n<p>When contacting SCRAPS with questions about one of our adoptable pets, please refer to the pet's Identification Number. Do not refer to the pet's name as not all staff is familiar with names. Dogs are subject to a 3 day holding period if no owner is known and a 5 day holding period if the owner is known. After the holding period the dog will be available for adoption.</p>\r\n<p>&nbsp;</p></div>","animalDescriptionPlain":"Hi! I&rsquo;m Yohan 3021.&nbsp; I came into SCRAPS 7-1-11.&nbsp; I am a NEUTERED corgi mix around 3 years old.&nbsp; I am so smart!&nbsp; I know SIT, DOWN, SHAKE, and SPEAK! &nbsp;I am really good at fetching too! Check out my video on Petfinder! I get along well with cats and dogs too.&nbsp; Come see me, maybe we can go hiking together this summer!\r\nSafer scores: all 1s, one 2\r\nWhen contacting SCRAPS with questions about one of our adoptable pets, please refer to the pet's Identification Number. Do not refer to the pet's name as not all staff is familiar with names. Dogs are subject to a 3 day holding period if no owner is known and a 5 day holding period if the owner is known. After the holding period the dog will be available for adoption.\r\n&nbsp;","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"99212","animalMicrochipped":"","animalMixedBreed":"","animalName":"3021 Yohan","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"3021","animalSearchString":"3021 Yohan Male Medium 3021 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847747_100x75.jpg","animalUptodate":"","animalUpdatedDate":"7/10/2011 10:32 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"8847747","mediaOrder":"1","lastUpdated":"7/9/2011 12:16 AM","fileSize":"58834","resolutionX":"500","resolutionY":"375","fileNameFullsize":"8847747_500x375.jpg","fileNameThumbnail":"8847747_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847747_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847747_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847747_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847747_100x75.jpg","original":{"type":"Original","fileSize":"58834","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847747_500x375.jpg"},"large":{"type":"Large","fileSize":"58834","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847747_500x375.jpg"},"small":{"type":"Small","fileSize":"3678","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847747_100x75.jpg"}},{"mediaID":"8847751","mediaOrder":"2","lastUpdated":"7/9/2011 12:16 AM","fileSize":"47371","resolutionX":"500","resolutionY":"375","fileNameFullsize":"8847751_500x375.jpg","fileNameThumbnail":"8847751_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847751_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847751_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847751_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847751_100x75.jpg","original":{"type":"Original","fileSize":"47371","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847751_500x375.jpg"},"large":{"type":"Large","fileSize":"47371","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847751_500x375.jpg"},"small":{"type":"Small","fileSize":"3416","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847751_100x75.jpg"}},{"mediaID":"8847752","mediaOrder":"3","lastUpdated":"7/9/2011 12:16 AM","fileSize":"36250","resolutionX":"500","resolutionY":"375","fileNameFullsize":"8847752_500x375.jpg","fileNameThumbnail":"8847752_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847752_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847752_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847752_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847752_100x75.jpg","original":{"type":"Original","fileSize":"36250","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847752_500x375.jpg"},"large":{"type":"Large","fileSize":"36250","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847752_500x375.jpg"},"small":{"type":"Small","fileSize":"2903","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4533/pictures/animals/3619/3619161/8847752_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"363584":{"animalID":"363584","animalOrgID":"1311","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">I have been a foster for a while now and wondering why no one has come to see me..........I am so hoping that someone will want to have me as part of their family soon. \r \r \r Yes, It's me Toby. The amazing wonder of the world, low to the ground, but quick as greased lightning. I'm a young fella, only a little over a year old. My Mom had to relinquish me because she was sick. I was a really good friend to her and spent lots of time giving her my love. I'm very good at that. But she thought I needed a family that could teach me some basic comands and do more fun things with me, so my foster Mom is now going to find me that forever, best home in the world. I'm a good boy in the house, I don't chew stuff up, only my rawhides and toys. I did have an accident on the floor, It was only twice in a week and the only time I had an accident in the house. I think I was having so much fun outside with my dog buddies I forgot what I was supposed to do outside. I walk really well on a leash and am learning to sit when asked. I try to be a really good boy, but need someone to love and teach me all the wonderful things I should know to be a great guy. I need the excersize us little guys deserve. Make sure you look up my breed to see if your life style is a good match. I would like to live where I had another k-9 buddy to play with.\r I would be a good 4 h dog or a hiking buddy. \r Don't you need a low to the ground, Good at listening, full of love, always faithful kind of guy?\r If you do that's me! \r I am also on heartworm preventative\r \r PLEASE READ:\r We do not operate a humane society or shelter, so we do not have a facility that is open to the public. Our dogs are fostered by volunteers in private homes, and are not available for viewing until an adoption application is filled out LOOKED OVER AND approved and personal and vet references are checked. PLEASE READ THE INFORMATION ON OUR HOME PAGE ABOUT ADOPTION PROCEDURES \r www.furrybottomsrescue.petfinder.com\r </div>","animalDescriptionPlain":"I have been a foster for a while now and wondering why no one has come to see me..........I am so hoping that someone will want to have me as part of their family soon. \r \r \r Yes, It's me Toby. The amazing wonder of the world, low to the ground, but quick as greased lightning. I'm a young fella, only a little over a year old. My Mom had to relinquish me because she was sick. I was a really good friend to her and spent lots of time giving her my love. I'm very good at that. But she thought I needed a family that could teach me some basic comands and do more fun things with me, so my foster Mom is now going to find me that forever, best home in the world. I'm a good boy in the house, I don't chew stuff up, only my rawhides and toys. I did have an accident on the floor, It was only twice in a week and the only time I had an accident in the house. I think I was having so much fun outside with my dog buddies I forgot what I was supposed to do outside. I walk really well on a leash and am learning to sit when asked. I try to be a really good boy, but need someone to love and teach me all the wonderful things I should know to be a great guy. I need the excersize us little guys deserve. Make sure you look up my breed to see if your life style is a good match. I would like to live where I had another k-9 buddy to play with.\r I would be a good 4 h dog or a hiking buddy. \r Don't you need a low to the ground, Good at listening, full of love, always faithful kind of guy?\r If you do that's me! \r I am also on heartworm preventative\r \r PLEASE READ:\r We do not operate a humane society or shelter, so we do not have a facility that is open to the public. Our dogs are fostered by volunteers in private homes, and are not available for viewing until an adoption application is filled out LOOKED OVER AND approved and personal and vet references are checked. PLEASE READ THE INFORMATION ON OUR HOME PAGE ABOUT ADOPTION PROCEDURES \r www.furrybottomsrescue.petfinder.com\r ","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"53073","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Toby","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Toby Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773612_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"5/28/2010 1:54 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"773612","mediaOrder":"1","lastUpdated":"12/7/2007 5:11 PM","fileSize":"50030","resolutionX":"500","resolutionY":"375","fileNameFullsize":"773612_500x375.jpg","fileNameThumbnail":"773612_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773612_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773612_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773612_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773612_100x75.jpg","original":{"type":"Original","fileSize":"50030","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773612_500x375.jpg"},"large":{"type":"Large","fileSize":"50030","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773612_500x375.jpg"},"small":{"type":"Small","fileSize":"3603","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773612_100x75.jpg"}},{"mediaID":"773613","mediaOrder":"2","lastUpdated":"12/7/2007 5:11 PM","fileSize":"35023","resolutionX":"483","resolutionY":"500","fileNameFullsize":"773613_483x500.jpg","fileNameThumbnail":"773613_100x103.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773613_483x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773613_100x103.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773613_483x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773613_100x103.jpg","original":{"type":"Original","fileSize":"35023","resolutionX":"483","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773613_483x500.jpg"},"large":{"type":"Large","fileSize":"35023","resolutionX":"483","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773613_483x500.jpg"},"small":{"type":"Small","fileSize":"3313","resolutionX":"100","resolutionY":"103","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773613_100x103.jpg"}},{"mediaID":"773614","mediaOrder":"3","lastUpdated":"12/7/2007 5:11 PM","fileSize":"57269","resolutionX":"500","resolutionY":"375","fileNameFullsize":"773614_500x375.jpg","fileNameThumbnail":"773614_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773614_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773614_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773614_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773614_100x75.jpg","original":{"type":"Original","fileSize":"57269","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773614_500x375.jpg"},"large":{"type":"Large","fileSize":"57269","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773614_500x375.jpg"},"small":{"type":"Small","fileSize":"3785","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1311/pictures/animals/363/363584/773614_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"3638987":{"animalID":"3638987","animalOrgID":"956","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"3/26/2011","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><div>This is Ryan, a young pup that has probably reached his maximum size.&nbsp; His personality is adorable.&nbsp; He is sweet, fun, and everyone at the vet clinic fell in love with his winning ways.&nbsp;</div>\r\n<div>&nbsp;</div>\r\n<div>He's maybe 12&nbsp;lbs., fully vetted, probably about 6-7 months old.&nbsp; I really don't know his breed, but he's a keeper, great&nbsp;with kids, cats, other dogs, everyone.</div></div>","animalDescriptionPlain":"This is Ryan, a young pup that has probably reached his maximum size.&nbsp; His personality is adorable.&nbsp; He is sweet, fun, and everyone at the vet clinic fell in love with his winning ways.&nbsp;\r\n&nbsp;\r\nHe's maybe 12&nbsp;lbs., fully vetted, probably about 6-7 months old.&nbsp; I really don't know his breed, but he's a keeper, great&nbsp;with kids, cats, other dogs, everyone.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Baby","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"07866","animalMicrochipped":"Yes","animalMixedBreed":"","animalName":"Ryan","animalSpecialneeds":"","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"All","animalOKWithCats":"Yes","animalOKWithDogs":"Yes","animalOKWithKids":"Yes","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Ryan Male Small susan little Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"Pounds","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887845_100x75.jpg","animalUptodate":"","animalUpdatedDate":"1/4/2012 2:46 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"8887845","mediaOrder":"1","lastUpdated":"7/13/2011 1:17 PM","fileSize":"3884","resolutionX":"150","resolutionY":"113","fileNameFullsize":"8887845_150x113.jpg","fileNameThumbnail":"8887845_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887845_150x113.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887845_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887845_150x113.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887845_100x75.jpg","original":{"type":"Original","fileSize":"3884","resolutionX":"150","resolutionY":"113","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887845_150x113.jpg"},"large":{"type":"Large","fileSize":"3884","resolutionX":"150","resolutionY":"113","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887845_150x113.jpg"},"small":{"type":"Small","fileSize":"2701","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887845_100x75.jpg"}},{"mediaID":"8887844","mediaOrder":"2","lastUpdated":"7/13/2011 1:17 PM","fileSize":"3852","resolutionX":"150","resolutionY":"113","fileNameFullsize":"8887844_150x113.jpg","fileNameThumbnail":"8887844_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887844_150x113.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887844_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887844_150x113.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887844_100x75.jpg","original":{"type":"Original","fileSize":"3852","resolutionX":"150","resolutionY":"113","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887844_150x113.jpg"},"large":{"type":"Large","fileSize":"3852","resolutionX":"150","resolutionY":"113","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887844_150x113.jpg"},"small":{"type":"Small","fileSize":"2638","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/956/pictures/animals/3638/3638987/8887844_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"3672602":{"animalID":"3672602","animalOrgID":"1689","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":"White with Red, Golden, Orange or Chestnut","animalColorID":"50","animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><p>All red/white purebreds - males and females - from 9 months to 4 years.&nbsp; These are well socialized and lovely dogs....all sort of related......&nbsp; From 12-25#</p>\r\n<p>\"Lady\" is a very lovely mixed corgi who is at our Apple Valley sanctuary.&nbsp; See her pix and bio on our website.&nbsp; She is an alpha gal, housetrained and a great companion.</p>\r\n<p>We will be rescuing several more corgis of all ages sometime.....just don't know when.&nbsp; That last ones were from a private home and they were all socialized well.&nbsp; We'll post when we know for sure - in the meantime, check <a href=\"http://www.petharbor.com\">www.petharbor.com</a> to see all dogs in the public shelters who desperately need adopting.</p>\r\n<p>PS ONE of the \"PUPPIES!\" on the B&amp;B web has a lot of corgi look in him - you can't really see it from this on-line pix, but well worth a personal visit.&nbsp; As of 10/31/11 he is 4 months, 15#, neutered and vaccinated.</p></div>","animalDescriptionPlain":"All red/white purebreds - males and females - from 9 months to 4 years.&nbsp; These are well socialized and lovely dogs....all sort of related......&nbsp; From 12-25#\r\n\"Lady\" is a very lovely mixed corgi who is at our Apple Valley sanctuary.&nbsp; See her pix and bio on our website.&nbsp; She is an alpha gal, housetrained and a great companion.\r\nWe will be rescuing several more corgis of all ages sometime.....just don't know when.&nbsp; That last ones were from a private home and they were all socialized well.&nbsp; We'll post when we know for sure - in the meantime, check www.petharbor.com to see all dogs in the public shelters who desperately need adopting.\r\nPS ONE of the \"PUPPIES!\" on the B&amp;B web has a lot of corgi look in him - you can't really see it from this on-line pix, but well worth a personal visit.&nbsp; As of 10/31/11 he is 4 months, 15#, neutered and vaccinated.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"92307","animalMicrochipped":"","animalMixedBreed":"","animalName":"Cache 'o Corgis-ADOPTED! See Lady & read below***","animalSpecialneeds":"","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"Yes","animalOKWithDogs":"Yes","animalOKWithKids":"Yes","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Cache 'o Corgis-ADOPTED! See Lady & read below*** White with Red, Golden, Orange or Chestnut Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962090_100x164.jpg","animalUptodate":"Yes","animalUpdatedDate":"11/22/2011 7:57 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"8962090","mediaOrder":"1","lastUpdated":"7/22/2011 10:30 AM","fileSize":"75093","resolutionX":"500","resolutionY":"824","fileNameFullsize":"8962090_500x824.jpg","fileNameThumbnail":"8962090_100x164.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962090_500x824.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962090_100x164.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962090_500x824.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962090_100x164.jpg","original":{"type":"Original","fileSize":"75093","resolutionX":"500","resolutionY":"824","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962090_500x824.jpg"},"large":{"type":"Large","fileSize":"75093","resolutionX":"500","resolutionY":"824","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962090_500x824.jpg"},"small":{"type":"Small","fileSize":"5537","resolutionX":"100","resolutionY":"164","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962090_100x164.jpg"}},{"mediaID":"8963165","mediaOrder":"2","lastUpdated":"7/22/2011 10:30 AM","fileSize":"68814","resolutionX":"500","resolutionY":"738","fileNameFullsize":"8963165_500x738.jpg","fileNameThumbnail":"8963165_100x147.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8963165_500x738.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8963165_100x147.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8963165_500x738.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8963165_100x147.jpg","original":{"type":"Original","fileSize":"68814","resolutionX":"500","resolutionY":"738","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8963165_500x738.jpg"},"large":{"type":"Large","fileSize":"68814","resolutionX":"500","resolutionY":"738","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8963165_500x738.jpg"},"small":{"type":"Small","fileSize":"4949","resolutionX":"100","resolutionY":"147","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8963165_100x147.jpg"}},{"mediaID":"8962092","mediaOrder":"3","lastUpdated":"7/22/2011 10:30 AM","fileSize":"76740","resolutionX":"500","resolutionY":"756","fileNameFullsize":"8962092_500x756.jpg","fileNameThumbnail":"8962092_100x151.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962092_500x756.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962092_100x151.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962092_500x756.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962092_100x151.jpg","original":{"type":"Original","fileSize":"76740","resolutionX":"500","resolutionY":"756","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962092_500x756.jpg"},"large":{"type":"Large","fileSize":"76740","resolutionX":"500","resolutionY":"756","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962092_500x756.jpg"},"small":{"type":"Small","fileSize":"5029","resolutionX":"100","resolutionY":"151","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1689/pictures/animals/3672/3672602/8962092_100x151.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"3711750":{"animalID":"3711750","animalOrgID":"4903","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><div>Olive is a sweet 2-3 year old corgi mix. Shes tiny weighing only 11 pounds. If you look up the word snuggle in the dictionary, Olives picture would be beside it. Shes an extremely affectionate and loving dog, never able to turn down a good belly rub or couch cuddle session. Olive is very timid toward other animals and would probably do best as the only pet in the house, but after a little work is playing wonderfully with her foster sister! Olive needs a forever home and a forever person to make her feel secure and loved. This is a special girl who will steal your heart instantly. Olive is a super smart girl and has begun basic training. She is being crate trained and working on housebreaking. She is also working on basic commands and loves to play fetch! If interested contact: srwalker78@gmail.com or 205-393-8457</div>","animalDescriptionPlain":"Olive is a sweet 2-3 year old corgi mix. Shes tiny weighing only 11 pounds. If you look up the word snuggle in the dictionary, Olives picture would be beside it. Shes an extremely affectionate and loving dog, never able to turn down a good belly rub or couch cuddle session. Olive is very timid toward other animals and would probably do best as the only pet in the house, but after a little work is playing wonderfully with her foster sister! Olive needs a forever home and a forever person to make her feel secure and loved. This is a special girl who will steal your heart instantly. Olive is a super smart girl and has begun basic training. She is being crate trained and working on housebreaking. She is also working on basic commands and loves to play fetch! If interested contact: srwalker78@gmail.com or 205-393-8457","animalDistinguishingMarks":"","animalEarType":"Natural/Uncropped","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"35476","animalMicrochipped":"","animalMixedBreed":"No","animalName":"Olive - adoption pending","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Olive - adoption pending Female Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062807_100x60.jpg","animalUptodate":"","animalUpdatedDate":"11/6/2014 11:13 AM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"9062807","mediaOrder":"1","lastUpdated":"8/3/2011 9:14 AM","fileSize":"14897","resolutionX":"400","resolutionY":"240","fileNameFullsize":"9062807_400x240.jpg","fileNameThumbnail":"9062807_100x60.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062807_400x240.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062807_100x60.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062807_400x240.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062807_100x60.jpg","original":{"type":"Original","fileSize":"14897","resolutionX":"400","resolutionY":"240","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062807_400x240.jpg"},"large":{"type":"Large","fileSize":"14897","resolutionX":"400","resolutionY":"240","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062807_400x240.jpg"},"small":{"type":"Small","fileSize":"2499","resolutionX":"100","resolutionY":"60","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062807_100x60.jpg"}},{"mediaID":"9062808","mediaOrder":"2","lastUpdated":"8/3/2011 9:14 AM","fileSize":"32612","resolutionX":"400","resolutionY":"240","fileNameFullsize":"9062808_400x240.jpg","fileNameThumbnail":"9062808_100x60.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062808_400x240.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062808_100x60.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062808_400x240.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062808_100x60.jpg","original":{"type":"Original","fileSize":"32612","resolutionX":"400","resolutionY":"240","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062808_400x240.jpg"},"large":{"type":"Large","fileSize":"32612","resolutionX":"400","resolutionY":"240","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062808_400x240.jpg"},"small":{"type":"Small","fileSize":"1805","resolutionX":"100","resolutionY":"60","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/4903/pictures/animals/3711/3711750/9062808_100x60.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"3906697":{"animalID":"3906697","animalOrgID":"724","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><p>This little guy is about as cute as they get and is looking for a new forever home.&nbsp; Could that home be yours?&nbsp; <br /><br /><br />Bently is currently settling into his new foster home so we should know more about him soon.&nbsp; What we do know so far is that he is really sweet, nervous around other dogs (especially dogs that are hyper) and is shy at first with his people.&nbsp; <br /><br /><br />Bently is a Corgi and is 1-2 years old.&nbsp; <br /><br /><br />Bently's adoption fee is $150 which includes his neuter surgery and vaccinations (rabies and parvo/distemper).&nbsp;&nbsp; We show dogs by appointment or at adoption events.&nbsp; If you would like to meet Bently, please leave a voice mail for Lisa at (435) 752-3534 (leave message) or email us at scfourpaws@hotmail.com.&nbsp; &nbsp;<br /><br /><br />Please be patient as we are all volunteers with full-time jobs!&nbsp; Thank you for your interest!</p></div>","animalDescriptionPlain":"This little guy is about as cute as they get and is looking for a new forever home.&nbsp; Could that home be yours?&nbsp; Bently is currently settling into his new foster home so we should know more about him soon.&nbsp; What we do know so far is that he is really sweet, nervous around other dogs (especially dogs that are hyper) and is shy at first with his people.&nbsp; Bently is a Corgi and is 1-2 years old.&nbsp; Bently's adoption fee is $150 which includes his neuter surgery and vaccinations (rabies and parvo/distemper).&nbsp;&nbsp; We show dogs by appointment or at adoption events.&nbsp; If you would like to meet Bently, please leave a voice mail for Lisa at (435) 752-3534 (leave message) or email us at scfourpaws@hotmail.com.&nbsp; &nbsp;Please be patient as we are all volunteers with full-time jobs!&nbsp; Thank you for your interest!","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"84326","animalMicrochipped":"","animalMixedBreed":"","animalName":"Bently *Pending*","animalSpecialneeds":"","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"Yes","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Bently *Pending* Male Small Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":"","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572114_100x74.jpg","animalUptodate":"Yes","animalUpdatedDate":"10/21/2011 2:36 PM","animalUrl":"","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"9572114","mediaOrder":"1","lastUpdated":"9/29/2011 8:34 PM","fileSize":"6061","resolutionX":"213","resolutionY":"159","fileNameFullsize":"9572114_213x159.jpg","fileNameThumbnail":"9572114_100x74.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572114_213x159.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572114_100x74.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572114_213x159.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572114_100x74.jpg","original":{"type":"Original","fileSize":"6061","resolutionX":"213","resolutionY":"159","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572114_213x159.jpg"},"large":{"type":"Large","fileSize":"6061","resolutionX":"213","resolutionY":"159","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572114_213x159.jpg"},"small":{"type":"Small","fileSize":"1868","resolutionX":"100","resolutionY":"74","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572114_100x74.jpg"}},{"mediaID":"9572115","mediaOrder":"2","lastUpdated":"9/29/2011 8:34 PM","fileSize":"6512","resolutionX":"213","resolutionY":"159","fileNameFullsize":"9572115_213x159.jpg","fileNameThumbnail":"9572115_100x74.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572115_213x159.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572115_100x74.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572115_213x159.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572115_100x74.jpg","original":{"type":"Original","fileSize":"6512","resolutionX":"213","resolutionY":"159","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572115_213x159.jpg"},"large":{"type":"Large","fileSize":"6512","resolutionX":"213","resolutionY":"159","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572115_213x159.jpg"},"small":{"type":"Small","fileSize":"1919","resolutionX":"100","resolutionY":"74","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/724/pictures/animals/3906/3906697/9572115_100x74.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"4065784":{"animalID":"4065784","animalOrgID":"159","animalActivityLevel":"Moderately Active","animalAdoptionFee":"$200","animalAltered":"Yes","animalAvailableDate":"","animalBirthdate":"11/27/2009","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":"red and white","animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><div><span style=\"font-size: 10pt;\"><strong>Jackson needs a home where he doesn't have to vie for attention with any other boy dogs. He is terrific with people, but too pushy for the little male doxie in his current home.</strong></span></div>\r\n<div><span style=\"font-size: 10pt;\"><strong>&nbsp;</strong></span></div>\r\n<div><span style=\"font-size: 10pt;\"><strong>Ritzy Rescue and Posh Puppy are programs created by CVRR to feature Purebred and Designer dogs. Many of our purebreds are rescued from local puppy mills; some are surrendered by owners who can no longer care for them. Designer dogs (blended breeds of highly desirable breeds) are sometimes found in local kill shelters, surrendered to us by backyard breeders and occasionally just dumped off near our foster homes. </strong></span></div>\r\n<p><span style=\"font-size: 10pt;\"><strong>All of our Ritzy and Posh dogs are in need of loving, nurturing homes. Many of them come to us with a serious lack of socialization, malnourished, unvaccinated and desperately in need of grooming and dental care. We place them in foster homes, attend to their physical and emotional needs and begin the process of finding suitable forever homes.</strong></span></p>\r\n<p><span style=\"font-size: 10pt;\"><strong>&nbsp;If you are interested in providing a loving home for a Ritzy Rescue or Posh Puppy you must complete an online application at </strong><a href=\"http://www.cvrr.us/\"><strong>www.cvrr.us</strong></a><strong>&nbsp;</strong></span></p>\r\n<p><span style=\"font-size: 10pt;\"><strong>We are only able to respond to interested parties who have completed applications online. Thank you.</strong></span></p>\r\n<div><span style=\"font-size: 10pt;\"><strong>&nbsp;</strong></span></div>\r\n<div><span style=\"font-size: 10pt;\"><strong>Many of our dogs can be seen at Petsmart in Visalia on Saturdays between 10 and 3.</strong></span></div>\r\n<div><span style=\"font-size: 10pt;\">&nbsp;</span></div></div>","animalDescriptionPlain":"Jackson needs a home where he doesn't have to vie for attention with any other boy dogs. He is terrific with people, but too pushy for the little male doxie in his current home.\r\n&nbsp;\r\nRitzy Rescue and Posh Puppy are programs created by CVRR to feature Purebred and Designer dogs. Many of our purebreds are rescued from local puppy mills; some are surrendered by owners who can no longer care for them. Designer dogs (blended breeds of highly desirable breeds) are sometimes found in local kill shelters, surrendered to us by backyard breeders and occasionally just dumped off near our foster homes. \r\nAll of our Ritzy and Posh dogs are in need of loving, nurturing homes. Many of them come to us with a serious lack of socialization, malnourished, unvaccinated and desperately in need of grooming and dental care. We place them in foster homes, attend to their physical and emotional needs and begin the process of finding suitable forever homes.\r\n&nbsp;If you are interested in providing a loving home for a Ritzy Rescue or Posh Puppy you must complete an online application at www.cvrr.us&nbsp;\r\nWe are only able to respond to interested parties who have completed applications online. Thank you.\r\n&nbsp;\r\nMany of our dogs can be seen at Petsmart in Visalia on Saturdays between 10 and 3.\r\n&nbsp;","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"Yes","animalIndoorOutdoor":"Indoor and Outdoor","animalKillDate":"","animalKillReason":"","animalLocation":"93247","animalMicrochipped":"No","animalMixedBreed":"","animalName":"Jackson (Ritzy)","animalSpecialneeds":"No","animalSpecialneedsDescription":"","animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"Yes","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Jackson (Ritzy) red and white Male Small red and white Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"20.0","animalSizePotential":"20.0","animalSizeUOM":"Pounds","animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":"","animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/159/pictures/animals/4065/4065784/10069303_100x95.jpg","animalUptodate":"Yes","animalUpdatedDate":"12/3/2011 9:01 PM","animalUrl":"http://centralvalleyrescuerailroad.org/animals/detail?AnimalID=4065784","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"10069303","mediaOrder":"1","lastUpdated":"11/27/2011 9:29 AM","fileSize":"95454","resolutionX":"441","resolutionY":"422","fileNameFullsize":"10069303_441x422.jpg","fileNameThumbnail":"10069303_100x95.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/159/pictures/animals/4065/4065784/10069303_441x422.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/159/pictures/animals/4065/4065784/10069303_100x95.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/159/pictures/animals/4065/4065784/10069303_441x422.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/159/pictures/animals/4065/4065784/10069303_100x95.jpg","original":{"type":"Original","fileSize":"95454","resolutionX":"441","resolutionY":"422","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/159/pictures/animals/4065/4065784/10069303_441x422.jpg"},"large":{"type":"Large","fileSize":"95454","resolutionX":"441","resolutionY":"422","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/159/pictures/animals/4065/4065784/10069303_441x422.jpg"},"small":{"type":"Small","fileSize":"4056","resolutionX":"100","resolutionY":"95","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/159/pictures/animals/4065/4065784/10069303_100x95.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"407567":{"animalID":"407567","animalOrgID":"1812","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">BUD is a 4 year old neutered male Corgi that needs a home without any chickens , guineas etc. as he is on a farm right now and he kills them but is otherwise a good dog. He would make a good guard dog and might be better with no small children although he is great with his owner's 10 year old grand-daughter.\r He has previously been injured on his back right leg so he has a scar and a slight limp. He is a nice small size. He is currently at his owner's in a pen outside as our humane society is full and we can't take more dogs and cats in until more get adopted so if interested in BUD you can contact : \r Mike @ (918) 225-4113</div>","animalDescriptionPlain":"BUD is a 4 year old neutered male Corgi that needs a home without any chickens , guineas etc. as he is on a farm right now and he kills them but is otherwise a good dog. He would make a good guard dog and might be better with no small children although he is great with his owner's 10 year old grand-daughter.\r He has previously been injured on his back right leg so he has a scar and a slight limp. He is a nice small size. He is currently at his owner's in a pen outside as our humane society is full and we can't take more dogs and cats in until more get adopted so if interested in BUD you can contact : \r Mike @ (918) 225-4113","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"74023","animalMicrochipped":"","animalMixedBreed":"No","animalName":"BUD adopted","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"070907","animalSearchString":"BUD adopted Male Medium 070907 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926775_100x75.jpg","animalUptodate":"","animalUpdatedDate":"2/10/2014 1:48 PM","animalUrl":"http://cimarronhumane.rescuegroups.org/animals/detail?AnimalID=407567","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"926775","mediaOrder":"1","lastUpdated":"1/31/2008 12:19 AM","fileSize":"26147","resolutionX":"500","resolutionY":"375","fileNameFullsize":"926775_500x375.jpg","fileNameThumbnail":"926775_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926775_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926775_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926775_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926775_100x75.jpg","original":{"type":"Original","fileSize":"26147","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926775_500x375.jpg"},"large":{"type":"Large","fileSize":"26147","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926775_500x375.jpg"},"small":{"type":"Small","fileSize":"2818","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926775_100x75.jpg"}},{"mediaID":"926776","mediaOrder":"2","lastUpdated":"1/31/2008 12:19 AM","fileSize":"29952","resolutionX":"500","resolutionY":"375","fileNameFullsize":"926776_500x375.jpg","fileNameThumbnail":"926776_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926776_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926776_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926776_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926776_100x75.jpg","original":{"type":"Original","fileSize":"29952","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926776_500x375.jpg"},"large":{"type":"Large","fileSize":"29952","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926776_500x375.jpg"},"small":{"type":"Small","fileSize":"2983","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926776_100x75.jpg"}},{"mediaID":"926777","mediaOrder":"3","lastUpdated":"1/31/2008 12:19 AM","fileSize":"31134","resolutionX":"500","resolutionY":"375","fileNameFullsize":"926777_500x375.jpg","fileNameThumbnail":"926777_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926777_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926777_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926777_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926777_100x75.jpg","original":{"type":"Original","fileSize":"31134","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926777_500x375.jpg"},"large":{"type":"Large","fileSize":"31134","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926777_500x375.jpg"},"small":{"type":"Small","fileSize":"3148","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407567/926777_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"407968":{"animalID":"407968","animalOrgID":"1812","animalActivityLevel":"","animalAdoptionFee":"","animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Sandy is a great dog, laid back and fun to be around. She has a problem with her weigh, but that can be fixed. She get along great with other animals. She is around 3 years old. All our animals must have a fenced yard for their protection. Call Lenora at 918-225-2140 or email cimhumsoc@yahoo.com.</div>","animalDescriptionPlain":"Sandy is a great dog, laid back and fun to be around. She has a problem with her weigh, but that can be fixed. She get along great with other animals. She is around 3 years old. All our animals must have a fenced yard for their protection. Call Lenora at 918-225-2140 or email cimhumsoc@yahoo.com.","animalDistinguishingMarks":"","animalEarType":"","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":"","animalGeneralAge":"Young","animalGeneralSizePotential":"Small","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"74023","animalMicrochipped":"","animalMixedBreed":"No","animalName":"x SANDY adopted","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":"0","animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"129062","animalSearchString":"x SANDY adopted Female Small 129062 Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":null,"animalSizePotential":null,"animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":null,"animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927770_100x70.jpg","animalUptodate":"Yes","animalUpdatedDate":"2/10/2014 1:48 PM","animalUrl":"http://cimarronhumane.rescuegroups.org/animals/detail?AnimalID=407968","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":null,"locationCity":null,"locationCountry":null,"locationUrl":null,"locationName":null,"locationPhone":null,"locationState":null,"locationPostalcode":null,"animalPictures":[{"mediaID":"927770","mediaOrder":"1","lastUpdated":"1/31/2008 12:45 AM","fileSize":"41070","resolutionX":"500","resolutionY":"352","fileNameFullsize":"927770_500x352.jpg","fileNameThumbnail":"927770_100x70.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927770_500x352.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927770_100x70.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927770_500x352.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927770_100x70.jpg","original":{"type":"Original","fileSize":"41070","resolutionX":"500","resolutionY":"352","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927770_500x352.jpg"},"large":{"type":"Large","fileSize":"41070","resolutionX":"500","resolutionY":"352","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927770_500x352.jpg"},"small":{"type":"Small","fileSize":"3188","resolutionX":"100","resolutionY":"70","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927770_100x70.jpg"}},{"mediaID":"927771","mediaOrder":"2","lastUpdated":"1/31/2008 12:45 AM","fileSize":"49653","resolutionX":"500","resolutionY":"375","fileNameFullsize":"927771_500x375.jpg","fileNameThumbnail":"927771_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927771_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927771_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927771_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927771_100x75.jpg","original":{"type":"Original","fileSize":"49653","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927771_500x375.jpg"},"large":{"type":"Large","fileSize":"49653","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927771_500x375.jpg"},"small":{"type":"Small","fileSize":"3746","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927771_100x75.jpg"}},{"mediaID":"927772","mediaOrder":"3","lastUpdated":"1/31/2008 12:45 AM","fileSize":"60984","resolutionX":"500","resolutionY":"375","fileNameFullsize":"927772_500x375.jpg","fileNameThumbnail":"927772_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927772_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927772_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927772_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927772_100x75.jpg","original":{"type":"Original","fileSize":"60984","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927772_500x375.jpg"},"large":{"type":"Large","fileSize":"60984","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927772_500x375.jpg"},"small":{"type":"Small","fileSize":"4140","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/1812/pictures/animals/407/407968/927772_100x75.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"4116340":{"animalID":"4116340","animalOrgID":"3699","animalActivityLevel":"","animalAdoptionFee":null,"animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">Name: Newton<br /> Age: 8 weeks<br /> Breed: Purebred Corgi<br /> Dog friendly: Yes<br /> Cat friendly: Yes<br /> Kid friendly: Yes<br /> Housetrained: No<br /> Crate trained: In progress<br /> Energy level: Medium/high, all puppy!<br /> Adoption fee is $350.<br /> If you are interested in meeting this secondhand hound, please go to http://secondhandhounds.org/adoption-application/ and fill out an adoption application! We will get back to you within 24 hours of your submission (usually sooner). Adoption fees unless otherwise stated: Male or female under 6 months: $300 (If the puppy is too young or small to be fixed at the time of adoption, you will either foster the puppy until she/he is fixed, which is included in the adoption fee, or you can sign a spay/neuter contract and upon proof of spay/neuter at your expense, you will be refunded $100). Neutered males over 6 months: $260 (includes shots, deworming, Frontline, Heartgard, and neuter) Spayed females over 6 months: $280 (includes shots, deworming, Frontline, Heartgard, and spay) WE NO LONGER ACCEPT CHECKS. Cash or paypal, please!</div>","animalDescriptionPlain":"Name: Newton Age: 8 weeks Breed: Purebred Corgi Dog friendly: Yes Cat friendly: Yes Kid friendly: Yes Housetrained: No Crate trained: In progress Energy level: Medium/high, all puppy! Adoption fee is $350. If you are interested in meeting this secondhand hound, please go to http://secondhandhounds.org/adoption-application/ and fill out an adoption application! We will get back to you within 24 hours of your submission (usually sooner). Adoption fees unless otherwise stated: Male or female under 6 months: $300 (If the puppy is too young or small to be fixed at the time of adoption, you will either foster the puppy until she/he is fixed, which is included in the adoption fee, or you can sign a spay/neuter contract and upon proof of spay/neuter at your expense, you will be refunded $100). Neutered males over 6 months: $260 (includes shots, deworming, Frontline, Heartgard, and neuter) Spayed females over 6 months: $280 (includes shots, deworming, Frontline, Heartgard, and spay) WE NO LONGER ACCEPT CHECKS. Cash or paypal, please!","animalDistinguishingMarks":"","animalEarType":"Natural/Uncropped","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Baby","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"55343","animalMicrochipped":"No","animalMixedBreed":"No","animalName":"Newton","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Newton Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202968_100x150.jpg","animalUptodate":"","animalUpdatedDate":"12/20/2011 5:04 PM","animalUrl":"http://shh.rescuegroups.org/animals/detail?AnimalID=4116340","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"10202968","mediaOrder":"1","lastUpdated":"12/13/2011 6:10 PM","fileSize":"78244","resolutionX":"333","resolutionY":"500","fileNameFullsize":"10202968_333x500.jpg","fileNameThumbnail":"10202968_100x150.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202968_333x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202968_100x150.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202968_333x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202968_100x150.jpg","original":{"type":"Original","fileSize":"78244","resolutionX":"333","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202968_333x500.jpg"},"large":{"type":"Large","fileSize":"78244","resolutionX":"333","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202968_333x500.jpg"},"small":{"type":"Small","fileSize":"4711","resolutionX":"100","resolutionY":"150","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202968_100x150.jpg"}},{"mediaID":"10202969","mediaOrder":"2","lastUpdated":"12/13/2011 6:10 PM","fileSize":"62098","resolutionX":"333","resolutionY":"500","fileNameFullsize":"10202969_333x500.jpg","fileNameThumbnail":"10202969_100x150.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202969_333x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202969_100x150.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202969_333x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202969_100x150.jpg","original":{"type":"Original","fileSize":"62098","resolutionX":"333","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202969_333x500.jpg"},"large":{"type":"Large","fileSize":"62098","resolutionX":"333","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202969_333x500.jpg"},"small":{"type":"Small","fileSize":"4333","resolutionX":"100","resolutionY":"150","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202969_100x150.jpg"}},{"mediaID":"10202970","mediaOrder":"3","lastUpdated":"12/13/2011 6:10 PM","fileSize":"46517","resolutionX":"333","resolutionY":"500","fileNameFullsize":"10202970_333x500.jpg","fileNameThumbnail":"10202970_100x150.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202970_333x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202970_100x150.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202970_333x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202970_100x150.jpg","original":{"type":"Original","fileSize":"46517","resolutionX":"333","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202970_333x500.jpg"},"large":{"type":"Large","fileSize":"46517","resolutionX":"333","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202970_333x500.jpg"},"small":{"type":"Small","fileSize":"3395","resolutionX":"100","resolutionY":"150","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4116/4116340/10202970_100x150.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"4118116":{"animalID":"4118116","animalOrgID":"3699","animalActivityLevel":"","animalAdoptionFee":null,"animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">All dogs are in individual foster homes throughout the Twin Cities.<br /><br />FILL OUT AN APPLICATION TODAY!<br /><a href=\"http://secondhandhounds.org/adoption-information/adoption-application/\" onclick=\"pageTracker._trackPageview(&#39;outbound/petnoteslinks&#39;);\" target=\"_blank\">Click Here to Begin Application</a><br /><br />Name: Sebastian<br /> Age: 9 years<br /> Gender: Male<br /> Breed: Pembroke Corgi<br /> Weight: currently 55lbs. Came to rescue very overweight and is on a strict diet + exercise plan! Ideal weight ~30lbs<br /> Dog friendly: Yes<br /> Cat friendly: TBD<br /> Kid friendly: Yes<br /> Housetrained: Yes<br /> Crate trained: Yes<br /> Energy level: Low<br /> History: Local owner surrender<br /> Adoption Fee: $200<br /><br />Sebastian is the sweetest boy! He was brought to our rescue in dire need of a dental cleaning and a nail trim, and a diet. Although he was not well cared for in his past, you would never know it! Has has the sweetest calm demeanor. He will make a great addition to any Corgi lover family!<br /><br />Search for more adoptable pets on our website at <a href=\"http://secondhandhounds.org\" onclick=\"pageTracker._trackPageview(&#39;outbound/petnoteslinks&#39;);\" target=\"_blank\">www.secondhandhounds.org</a><br /></div>","animalDescriptionPlain":"All dogs are in individual foster homes throughout the Twin Cities.FILL OUT AN APPLICATION TODAY!Click Here to Begin ApplicationName: Sebastian Age: 9 years Gender: Male Breed: Pembroke Corgi Weight: currently 55lbs. Came to rescue very overweight and is on a strict diet + exercise plan! Ideal weight ~30lbs Dog friendly: Yes Cat friendly: TBD Kid friendly: Yes Housetrained: Yes Crate trained: Yes Energy level: Low History: Local owner surrender Adoption Fee: $200Sebastian is the sweetest boy! He was brought to our rescue in dire need of a dental cleaning and a nail trim, and a diet. Although he was not well cared for in his past, you would never know it! Has has the sweetest calm demeanor. He will make a great addition to any Corgi lover family!Search for more adoptable pets on our website at www.secondhandhounds.org","animalDistinguishingMarks":"","animalEarType":"Natural/Uncropped","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Senior","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"55343","animalMicrochipped":"No","animalMixedBreed":"No","animalName":"Sebastian","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Sebastian Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209243_100x101.jpg","animalUptodate":"Yes","animalUpdatedDate":"12/20/2011 5:04 PM","animalUrl":"http://shh.rescuegroups.org/animals/detail?AnimalID=4118116","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"10209243","mediaOrder":"1","lastUpdated":"12/14/2011 7:47 AM","fileSize":"67894","resolutionX":"480","resolutionY":"487","fileNameFullsize":"10209243_480x487.jpg","fileNameThumbnail":"10209243_100x101.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209243_480x487.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209243_100x101.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209243_480x487.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209243_100x101.jpg","original":{"type":"Original","fileSize":"67894","resolutionX":"480","resolutionY":"487","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209243_480x487.jpg"},"large":{"type":"Large","fileSize":"67894","resolutionX":"480","resolutionY":"487","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209243_480x487.jpg"},"small":{"type":"Small","fileSize":"3005","resolutionX":"100","resolutionY":"101","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209243_100x101.jpg"}},{"mediaID":"10209244","mediaOrder":"2","lastUpdated":"12/14/2011 7:47 AM","fileSize":"29292","resolutionX":"296","resolutionY":"240","fileNameFullsize":"10209244_296x240.jpg","fileNameThumbnail":"10209244_100x81.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209244_296x240.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209244_100x81.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209244_296x240.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209244_100x81.jpg","original":{"type":"Original","fileSize":"29292","resolutionX":"296","resolutionY":"240","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209244_296x240.jpg"},"large":{"type":"Large","fileSize":"29292","resolutionX":"296","resolutionY":"240","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209244_296x240.jpg"},"small":{"type":"Small","fileSize":"2511","resolutionX":"100","resolutionY":"81","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209244_100x81.jpg"}},{"mediaID":"10209245","mediaOrder":"3","lastUpdated":"12/14/2011 7:47 AM","fileSize":"24657","resolutionX":"500","resolutionY":"281","fileNameFullsize":"10209245_500x281.jpg","fileNameThumbnail":"10209245_100x56.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209245_500x281.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209245_100x56.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209245_500x281.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209245_100x56.jpg","original":{"type":"Original","fileSize":"24657","resolutionX":"500","resolutionY":"281","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209245_500x281.jpg"},"large":{"type":"Large","fileSize":"24657","resolutionX":"500","resolutionY":"281","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209245_500x281.jpg"},"small":{"type":"Small","fileSize":"2147","resolutionX":"100","resolutionY":"56","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118116/10209245_100x56.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"4118174":{"animalID":"4118174","animalOrgID":"3699","animalActivityLevel":"","animalAdoptionFee":null,"animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><div><br />All dogs are in individual foster homes throughout the Twin Cities.<br /><br />FILL OUT AN APPLICATION TODAY!<br /><a href=\"http://secondhandhounds.org/adoption-information/adoption-application/\" onclick=\"pageTracker._trackPageview(&#39;outbound/petnoteslinks&#39;);\" target=\"_blank\">Click Here to Begin Application</a><br /><br />Name: Boss<br /> Age: 4 years<br /> Gender: Male<br /> Breed: Pembroke Corgi<br /> Dog friendly: Yes<br /> Cat friendly: Yes<br /> Kid friendly: Yes<br /> Housetrained: TBD<br /> Crate trained: Yes<br /> Energy level: Low<br /> History: Breeder release when department of health became involved<br /> Adoption Fee: $300<br /><br />Search for more adoptable pets on our website at <a href=\"http://secondhandhounds.org\" onclick=\"pageTracker._trackPageview(&#39;outbound/petnoteslinks&#39;);\" target=\"_blank\">www.secondhandhounds.org</a><br /></div>","animalDescriptionPlain":"All dogs are in individual foster homes throughout the Twin Cities.FILL OUT AN APPLICATION TODAY!Click Here to Begin ApplicationName: Boss Age: 4 years Gender: Male Breed: Pembroke Corgi Dog friendly: Yes Cat friendly: Yes Kid friendly: Yes Housetrained: TBD Crate trained: Yes Energy level: Low History: Breeder release when department of health became involved Adoption Fee: $300Search for more adoptable pets on our website at www.secondhandhounds.org","animalDistinguishingMarks":"","animalEarType":"Natural/Uncropped","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"55343","animalMicrochipped":"No","animalMixedBreed":"No","animalName":"Boss","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Boss Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209394_100x92.jpg","animalUptodate":"Yes","animalUpdatedDate":"12/20/2011 5:04 PM","animalUrl":"http://shh.rescuegroups.org/animals/detail?AnimalID=4118174","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"10209394","mediaOrder":"1","lastUpdated":"12/14/2011 7:50 AM","fileSize":"227103","resolutionX":"416","resolutionY":"385","fileNameFullsize":"10209394_416x385.jpg","fileNameThumbnail":"10209394_100x92.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209394_416x385.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209394_100x92.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209394_416x385.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209394_100x92.jpg","original":{"type":"Original","fileSize":"227103","resolutionX":"416","resolutionY":"385","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209394_416x385.jpg"},"large":{"type":"Large","fileSize":"227103","resolutionX":"416","resolutionY":"385","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209394_416x385.jpg"},"small":{"type":"Small","fileSize":"3029","resolutionX":"100","resolutionY":"92","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209394_100x92.jpg"}},{"mediaID":"10209395","mediaOrder":"2","lastUpdated":"12/14/2011 7:50 AM","fileSize":"135586","resolutionX":"228","resolutionY":"232","fileNameFullsize":"10209395_228x232.jpg","fileNameThumbnail":"10209395_100x101.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209395_228x232.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209395_100x101.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209395_228x232.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209395_100x101.jpg","original":{"type":"Original","fileSize":"135586","resolutionX":"228","resolutionY":"232","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209395_228x232.jpg"},"large":{"type":"Large","fileSize":"135586","resolutionX":"228","resolutionY":"232","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209395_228x232.jpg"},"small":{"type":"Small","fileSize":"2777","resolutionX":"100","resolutionY":"101","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209395_100x101.jpg"}},{"mediaID":"10209396","mediaOrder":"3","lastUpdated":"12/14/2011 7:50 AM","fileSize":"182973","resolutionX":"411","resolutionY":"339","fileNameFullsize":"10209396_411x339.jpg","fileNameThumbnail":"10209396_100x82.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209396_411x339.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209396_100x82.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209396_411x339.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209396_100x82.jpg","original":{"type":"Original","fileSize":"182973","resolutionX":"411","resolutionY":"339","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209396_411x339.jpg"},"large":{"type":"Large","fileSize":"182973","resolutionX":"411","resolutionY":"339","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209396_411x339.jpg"},"small":{"type":"Small","fileSize":"2530","resolutionX":"100","resolutionY":"82","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118174/10209396_100x82.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"4118177":{"animalID":"4118177","animalOrgID":"3699","animalActivityLevel":"","animalAdoptionFee":null,"animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">PENDING ADOPTION!<br /><br />All dogs are in individual foster homes throughout the Twin Cities.<br /><br />FILL OUT AN APPLICATION TODAY!<br /><a href=\"http://secondhandhounds.org/adoption-information/adoption-application/\" onclick=\"pageTracker._trackPageview(&#39;outbound/petnoteslinks&#39;);\" target=\"_blank\">Click Here to Begin Application</a><br /><br />Name: Bruce<br /> Age: 1-2 years<br /> Gender: Male<br /> Breed: Pembroke Corgi<br /> Dog friendly: Yes<br /> Cat friendly: Yes<br /> Kid friendly: Yes<br /> Housetrained: In progress<br /> Crate trained: Yes<br /> Energy level: Depends<br /> History: Breeder release when department of health became involved<br /> Adoption Fee: $300<br /><br />From the foster family: Bruce is really well-adjusted. I&#39;m working on potty training and am confident that he would have it down if I were more consistent. It&#39;s my fault we&#39;re not at 100% yet. He has a LOT of energy at times and at others, hardly any. When he forgets his past and totally lets go he&#39;s like a little heat seeking missile, chasing my dogs around and throwing blankets and laundry and dog bowls anywhere and everywhere he can. He gets a little wound up at night, around 2 or 3 and bangs around then falls back asleep. This morning I found him sleeping in my suitcase on top of my clothes. He is not great for sleeping with, he falls out of bed so we stopped trying for a while. I don&#39;t want him to get hurt. It seems no matter how much of a barrier around the bed I build he finds a way to fall out. He does like to sleep on the pillow above my head.<br /><br />He loves car rides, loves golf cart rides even more. He loves squeaky toys and bones. He&#39;s really fast when he wants to be but has little stamina. He&#39;s quite out of shape for such a young boy. I&#39;m sure that is a result of his past and will quickly improve in his new life. He stays really close to me and also to my smallest dog Lulu. He loves kids, no issues. No aggression issues at all. No dog bowl issues at all. I have been messing with his bowl a bit while he eats, just to make sure. I also have my face in his all the time. He&#39;s great. He loves to be carried like a baby and curls up looking exactly like a hedgehog.<br /><br />His week has consisted of two days at my house in Deephaven, a road trip to Duluth, four nights at my Dads (with me of course) and now the next week at my cabin. He adjusts quickly and easily to all changing situations. He still has a lot of hesitation but overcomes it quickly. His biggest issue so far has been an inability to walk through a door leading outside. After five days, we got it! Now he has no problem. We&#39;re also working on a few stairs. He can do it, just would rather be carried. He is a smart boy! <br /><br />He doesn&#39;t like loud noises and I am positive if anyone yelled at him he would have a heart attack. He is insanely sensitive. He&#39;s very curious, quite stubborn, a bit mischievous and needs a home that is pretty laid back with few rules and pretty much zero punishment. He&#39;s brand new to this world and with only a week under his belt has a long way to go. Re-direction is the way to go with lots and lots of positive reinforcement when he does the right thing. He really does try, as do all dogs. Sometimes they get a little confused or frustrated and there is that pesky language barrier so patience is a must...always with every dog.<br /><br />He would do great on a farm or a home with a fenced in yard. He for sure needs to be with other dogs, he told me, really...he did:) <br /><br />Search for more adoptable pets on our website at <a href=\"http://secondhandhounds.org\" onclick=\"pageTracker._trackPageview(&#39;outbound/petnoteslinks&#39;);\" target=\"_blank\">www.secondhandhounds.org</a><br /></div>","animalDescriptionPlain":"PENDING ADOPTION!All dogs are in individual foster homes throughout the Twin Cities.FILL OUT AN APPLICATION TODAY!Click Here to Begin ApplicationName: Bruce Age: 1-2 years Gender: Male Breed: Pembroke Corgi Dog friendly: Yes Cat friendly: Yes Kid friendly: Yes Housetrained: In progress Crate trained: Yes Energy level: Depends History: Breeder release when department of health became involved Adoption Fee: $300From the foster family: Bruce is really well-adjusted. I&#39;m working on potty training and am confident that he would have it down if I were more consistent. It&#39;s my fault we&#39;re not at 100% yet. He has a LOT of energy at times and at others, hardly any. When he forgets his past and totally lets go he&#39;s like a little heat seeking missile, chasing my dogs around and throwing blankets and laundry and dog bowls anywhere and everywhere he can. He gets a little wound up at night, around 2 or 3 and bangs around then falls back asleep. This morning I found him sleeping in my suitcase on top of my clothes. He is not great for sleeping with, he falls out of bed so we stopped trying for a while. I don&#39;t want him to get hurt. It seems no matter how much of a barrier around the bed I build he finds a way to fall out. He does like to sleep on the pillow above my head.He loves car rides, loves golf cart rides even more. He loves squeaky toys and bones. He&#39;s really fast when he wants to be but has little stamina. He&#39;s quite out of shape for such a young boy. I&#39;m sure that is a result of his past and will quickly improve in his new life. He stays really close to me and also to my smallest dog Lulu. He loves kids, no issues. No aggression issues at all. No dog bowl issues at all. I have been messing with his bowl a bit while he eats, just to make sure. I also have my face in his all the time. He&#39;s great. He loves to be carried like a baby and curls up looking exactly like a hedgehog.His week has consisted of two days at my house in Deephaven, a road trip to Duluth, four nights at my Dads (with me of course) and now the next week at my cabin. He adjusts quickly and easily to all changing situations. He still has a lot of hesitation but overcomes it quickly. His biggest issue so far has been an inability to walk through a door leading outside. After five days, we got it! Now he has no problem. We&#39;re also working on a few stairs. He can do it, just would rather be carried. He is a smart boy! He doesn&#39;t like loud noises and I am positive if anyone yelled at him he would have a heart attack. He is insanely sensitive. He&#39;s very curious, quite stubborn, a bit mischievous and needs a home that is pretty laid back with few rules and pretty much zero punishment. He&#39;s brand new to this world and with only a week under his belt has a long way to go. Re-direction is the way to go with lots and lots of positive reinforcement when he does the right thing. He really does try, as do all dogs. Sometimes they get a little confused or frustrated and there is that pesky language barrier so patience is a must...always with every dog.He would do great on a farm or a home with a fenced in yard. He for sure needs to be with other dogs, he told me, really...he did:) Search for more adoptable pets on our website at www.secondhandhounds.org","animalDistinguishingMarks":"","animalEarType":"Natural/Uncropped","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Young","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"55343","animalMicrochipped":"No","animalMixedBreed":"No","animalName":"Bruce","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Bruce Male Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Male","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209400_100x96.jpg","animalUptodate":"Yes","animalUpdatedDate":"12/20/2011 5:04 PM","animalUrl":"http://shh.rescuegroups.org/animals/detail?AnimalID=4118177","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"10209400","mediaOrder":"1","lastUpdated":"12/14/2011 7:50 AM","fileSize":"35105","resolutionX":"434","resolutionY":"417","fileNameFullsize":"10209400_434x417.jpg","fileNameThumbnail":"10209400_100x96.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209400_434x417.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209400_100x96.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209400_434x417.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209400_100x96.jpg","original":{"type":"Original","fileSize":"35105","resolutionX":"434","resolutionY":"417","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209400_434x417.jpg"},"large":{"type":"Large","fileSize":"35105","resolutionX":"434","resolutionY":"417","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209400_434x417.jpg"},"small":{"type":"Small","fileSize":"3860","resolutionX":"100","resolutionY":"96","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209400_100x96.jpg"}},{"mediaID":"10209401","mediaOrder":"2","lastUpdated":"12/14/2011 7:50 AM","fileSize":"25779","resolutionX":"373","resolutionY":"500","fileNameFullsize":"10209401_373x500.jpg","fileNameThumbnail":"10209401_100x134.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209401_373x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209401_100x134.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209401_373x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209401_100x134.jpg","original":{"type":"Original","fileSize":"25779","resolutionX":"373","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209401_373x500.jpg"},"large":{"type":"Large","fileSize":"25779","resolutionX":"373","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209401_373x500.jpg"},"small":{"type":"Small","fileSize":"4188","resolutionX":"100","resolutionY":"134","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209401_100x134.jpg"}},{"mediaID":"10209402","mediaOrder":"3","lastUpdated":"12/14/2011 7:50 AM","fileSize":"18115","resolutionX":"132","resolutionY":"140","fileNameFullsize":"10209402_132x140.jpg","fileNameThumbnail":"10209402_100x106.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209402_132x140.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209402_100x106.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209402_132x140.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209402_100x106.jpg","original":{"type":"Original","fileSize":"18115","resolutionX":"132","resolutionY":"140","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209402_132x140.jpg"},"large":{"type":"Large","fileSize":"18115","resolutionX":"132","resolutionY":"140","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209402_132x140.jpg"},"small":{"type":"Small","fileSize":"3665","resolutionX":"100","resolutionY":"106","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118177/10209402_100x106.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"4118179":{"animalID":"4118179","animalOrgID":"3699","animalActivityLevel":"","animalAdoptionFee":null,"animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\"><br />All dogs are in individual foster homes throughout the Twin Cities.<br /><br />FILL OUT AN APPLICATION TODAY!<br /><a href=\"http://secondhandhounds.org/adoption-information/adoption-application/\" onclick=\"pageTracker._trackPageview(&#39;outbound/petnoteslinks&#39;);\" target=\"_blank\">Click Here to Begin Application</a><br /><br />Name: Bubbles<br /> Age: 4 years<br /> Gender: Female<br /> Breed: Pembroke Corgi<br /> Weight: ~18.2 lbs<br /> Dog friendly: Yes<br /> Cat friendly: Yes<br /> Kid friendly: Yes<br /> Housetrained: In progress<br /> Crate trained: TBD<br /> Energy level: Medium; super energetic for a Corgi and very loving!<br /> History: Breeder release when department of health became involved<br /> Adoption Fee: $300<br /><br />From the foster family: When I drove down to Iowa to rescue 8 corgis last week, you can imagine my dismay when I got back only to find out the powers that be wanted to name one of them Bubbles. Bubbles? Really? Turns out, they were right. This corgi by any other name wouldn&#39;t quite be the same. She IS Bubbles. She&#39;s bubbly, and spunky, and fun! Even though she came from a puppy mill, she loooooves people. Can&#39;t get enough. And because she came from a puppy mill, she gets along swimmingly with my other dogs, although she is waiting for her application for the position of &quot;Boss&quot; to be reviewed and approved. Bubbles is just a bundle of joy, and she&#39;ll bring her bundle along to her new forever home. So, who&#39;s going to show Bubbles what the good life is like? Do YOU need a little Bubbles in your life?<br /><br />Search for more adoptable pets on our website at <a href=\"http://secondhandhounds.org\" onclick=\"pageTracker._trackPageview(&#39;outbound/petnoteslinks&#39;);\" target=\"_blank\">www.secondhandhounds.org</a><br /></div>","animalDescriptionPlain":"All dogs are in individual foster homes throughout the Twin Cities.FILL OUT AN APPLICATION TODAY!Click Here to Begin ApplicationName: Bubbles Age: 4 years Gender: Female Breed: Pembroke Corgi Weight: ~18.2 lbs Dog friendly: Yes Cat friendly: Yes Kid friendly: Yes Housetrained: In progress Crate trained: TBD Energy level: Medium; super energetic for a Corgi and very loving! History: Breeder release when department of health became involved Adoption Fee: $300From the foster family: When I drove down to Iowa to rescue 8 corgis last week, you can imagine my dismay when I got back only to find out the powers that be wanted to name one of them Bubbles. Bubbles? Really? Turns out, they were right. This corgi by any other name wouldn&#39;t quite be the same. She IS Bubbles. She&#39;s bubbly, and spunky, and fun! Even though she came from a puppy mill, she loooooves people. Can&#39;t get enough. And because she came from a puppy mill, she gets along swimmingly with my other dogs, although she is waiting for her application for the position of &quot;Boss&quot; to be reviewed and approved. Bubbles is just a bundle of joy, and she&#39;ll bring her bundle along to her new forever home. So, who&#39;s going to show Bubbles what the good life is like? Do YOU need a little Bubbles in your life?Search for more adoptable pets on our website at www.secondhandhounds.org","animalDistinguishingMarks":"","animalEarType":"Natural/Uncropped","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"55343","animalMicrochipped":"No","animalMixedBreed":"No","animalName":"Bubbles","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Bubbles Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209407_100x57.jpg","animalUptodate":"Yes","animalUpdatedDate":"12/20/2011 5:04 PM","animalUrl":"http://shh.rescuegroups.org/animals/detail?AnimalID=4118179","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"10209407","mediaOrder":"1","lastUpdated":"12/14/2011 7:51 AM","fileSize":"39936","resolutionX":"500","resolutionY":"289","fileNameFullsize":"10209407_500x289.jpg","fileNameThumbnail":"10209407_100x57.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209407_500x289.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209407_100x57.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209407_500x289.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209407_100x57.jpg","original":{"type":"Original","fileSize":"39936","resolutionX":"500","resolutionY":"289","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209407_500x289.jpg"},"large":{"type":"Large","fileSize":"39936","resolutionX":"500","resolutionY":"289","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209407_500x289.jpg"},"small":{"type":"Small","fileSize":"2400","resolutionX":"100","resolutionY":"57","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209407_100x57.jpg"}},{"mediaID":"10209408","mediaOrder":"2","lastUpdated":"12/14/2011 7:51 AM","fileSize":"43911","resolutionX":"406","resolutionY":"500","fileNameFullsize":"10209408_406x500.jpg","fileNameThumbnail":"10209408_100x123.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209408_406x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209408_100x123.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209408_406x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209408_100x123.jpg","original":{"type":"Original","fileSize":"43911","resolutionX":"406","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209408_406x500.jpg"},"large":{"type":"Large","fileSize":"43911","resolutionX":"406","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209408_406x500.jpg"},"small":{"type":"Small","fileSize":"3865","resolutionX":"100","resolutionY":"123","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209408_100x123.jpg"}},{"mediaID":"10209409","mediaOrder":"3","lastUpdated":"12/14/2011 7:51 AM","fileSize":"44485","resolutionX":"414","resolutionY":"500","fileNameFullsize":"10209409_414x500.jpg","fileNameThumbnail":"10209409_100x120.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209409_414x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209409_100x120.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209409_414x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209409_100x120.jpg","original":{"type":"Original","fileSize":"44485","resolutionX":"414","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209409_414x500.jpg"},"large":{"type":"Large","fileSize":"44485","resolutionX":"414","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209409_414x500.jpg"},"small":{"type":"Small","fileSize":"3820","resolutionX":"100","resolutionY":"120","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118179/10209409_100x120.jpg"}}],"animalVideos":[],"animalVideoUrls":[]},"4118180":{"animalID":"4118180","animalOrgID":"3699","animalActivityLevel":"","animalAdoptionFee":null,"animalAltered":"","animalAvailableDate":"","animalBirthdate":"","animalBirthdateExact":"No","animalBreed":"Corgi","animalCoatLength":"","animalColor":null,"animalColorID":null,"animalColorDetails":null,"animalCourtesy":"No","animalDeclawed":"","animalDescription":"<div class=\"rgDescription\">PENDING ADOPTION!<br /><br />All dogs are in individual foster homes throughout the Twin Cities.<br /><br />FILL OUT AN APPLICATION TODAY!<br /><a href=\"http://secondhandhounds.org/adoption-information/adoption-application/\" onclick=\"pageTracker._trackPageview(&#39;outbound/petnoteslinks&#39;);\" target=\"_blank\">Click Here to Begin Application</a><br /><br />Name: Bettina<br /> Age: 3 years<br /> Gender: Female<br /> Breed: Pembroke Corgi<br /> Dog friendly: Yes<br /> Cat friendly: Yes<br /> Kid friendly: Yes<br /> Housetrained: TBD<br /> Crate trained: Yes<br /> Energy level: Low<br /> History: Breeder release when department of health became involved<br /> Adoption Fee: $300<br /><br />From the foster family: Bettina is slowly opening up and is very sweet with us the girls. We are giving her space to get used to everything. She learned to use steps this morning and we are working on using a leash. She is making progress slowly which is all we can ask. Bettina loves to cuddle and is starting to come when she is called.<br /><br />Search for more adoptable pets on our website at <a href=\"http://secondhandhounds.org\" onclick=\"pageTracker._trackPageview(&#39;outbound/petnoteslinks&#39;);\" target=\"_blank\">www.secondhandhounds.org</a><br /></div>","animalDescriptionPlain":"PENDING ADOPTION!All dogs are in individual foster homes throughout the Twin Cities.FILL OUT AN APPLICATION TODAY!Click Here to Begin ApplicationName: Bettina Age: 3 years Gender: Female Breed: Pembroke Corgi Dog friendly: Yes Cat friendly: Yes Kid friendly: Yes Housetrained: TBD Crate trained: Yes Energy level: Low History: Breeder release when department of health became involved Adoption Fee: $300From the foster family: Bettina is slowly opening up and is very sweet with us the girls. We are giving her space to get used to everything. She learned to use steps this morning and we are working on using a leash. She is making progress slowly which is all we can ask. Bettina loves to cuddle and is starting to come when she is called.Search for more adoptable pets on our website at www.secondhandhounds.org","animalDistinguishingMarks":"","animalEarType":"Natural/Uncropped","animalEnergyLevel":"","animalExerciseNeeds":"","animalEyeColor":"","animalFence":"","animalFound":"No","animalFoundDate":"","animalFoundPostalcode":null,"animalGeneralAge":"Adult","animalGeneralSizePotential":"Medium","animalGroomingNeeds":"","animalHousetrained":"","animalIndoorOutdoor":"","animalKillDate":"","animalKillReason":"","animalLocation":"55343","animalMicrochipped":"No","animalMixedBreed":"No","animalName":"Bettina","animalSpecialneeds":"","animalSpecialneedsDescription":null,"animalNeedsFoster":"No","animalNewPeople":"","animalNotHousetrainedReason":"","animalObedienceTraining":"","animalOKWithAdults":"","animalOKWithCats":"","animalOKWithDogs":"","animalOKWithKids":"","animalOwnerExperience":"","animalPattern":null,"animalPatternID":null,"animalAdoptionPending":"No","animalPrimaryBreed":"Corgi","animalPrimaryBreedID":"126","animalRescueID":"","animalSearchString":"Bettina Female Medium Dogs Corgis","animalSecondaryBreed":null,"animalSecondaryBreedID":null,"animalSex":"Female","animalShedding":"","animalSizeCurrent":"0.0","animalSizePotential":"0.0","animalSizeUOM":null,"animalSpecies":"Dog","animalSpeciesID":"Dog","animalSponsorable":"No","animalSponsors":null,"animalSponsorshipDetails":null,"animalSponsorshipMinimum":null,"animalStatus":"Adopted","animalStatusID":"3","animalSummary":"","animalTailType":"","animalThumbnailUrl":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209410_100x75.jpg","animalUptodate":"Yes","animalUpdatedDate":"12/20/2011 5:04 PM","animalUrl":"http://shh.rescuegroups.org/animals/detail?AnimalID=4118180","animalVocal":"","animalYardRequired":"","animalAffectionate":"","animalApartment":"","animalCratetrained":"","animalDrools":"","animalEagerToPlease":"","animalEscapes":"","animalEventempered":"","animalFetches":"","animalGentle":"","animalGoodInCar":"","animalGoofy":"","animalHasAllergies":"","animalHearingImpaired":"","animalHypoallergenic":"","animalIndependent":"","animalIntelligent":"","animalLap":"","animalLeashtrained":"","animalNeedsCompanionAnimal":"","animalNoCold":"","animalNoFemaleDogs":"","animalNoHeat":"","animalNoLargeDogs":"","animalNoMaleDogs":"","animalNoSmallDogs":"","animalObedient":"","animalOKForSeniors":"","animalOKWithFarmAnimals":"","animalOlderKidsOnly":"","animalOngoingMedical":"","animalPlayful":"","animalPlaysToys":"","animalPredatory":"","animalProtective":"","animalSightImpaired":"","animalSkittish":"","animalSpecialDiet":"","animalSwims":"","animalTimid":"","fosterEmail":"","fosterFirstname":"","fosterLastname":"","fosterName":"","fosterPhoneCell":"","fosterPhoneHome":"","fosterSalutation":"","locationAddress":"","locationCity":"","locationCountry":"","locationUrl":"","locationName":"","locationPhone":"","locationState":"","locationPostalcode":"","animalPictures":[{"mediaID":"10209410","mediaOrder":"1","lastUpdated":"12/14/2011 7:51 AM","fileSize":"32184","resolutionX":"500","resolutionY":"375","fileNameFullsize":"10209410_500x375.jpg","fileNameThumbnail":"10209410_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209410_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209410_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209410_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209410_100x75.jpg","original":{"type":"Original","fileSize":"32184","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209410_500x375.jpg"},"large":{"type":"Large","fileSize":"32184","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209410_500x375.jpg"},"small":{"type":"Small","fileSize":"2240","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209410_100x75.jpg"}},{"mediaID":"10209411","mediaOrder":"2","lastUpdated":"12/14/2011 7:51 AM","fileSize":"32175","resolutionX":"500","resolutionY":"375","fileNameFullsize":"10209411_500x375.jpg","fileNameThumbnail":"10209411_100x75.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209411_500x375.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209411_100x75.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209411_500x375.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209411_100x75.jpg","original":{"type":"Original","fileSize":"32175","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209411_500x375.jpg"},"large":{"type":"Large","fileSize":"32175","resolutionX":"500","resolutionY":"375","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209411_500x375.jpg"},"small":{"type":"Small","fileSize":"2283","resolutionX":"100","resolutionY":"75","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209411_100x75.jpg"}},{"mediaID":"10209412","mediaOrder":"3","lastUpdated":"12/14/2011 7:51 AM","fileSize":"93181","resolutionX":"375","resolutionY":"500","fileNameFullsize":"10209412_375x500.jpg","fileNameThumbnail":"10209412_100x133.jpg","urlSecureFullsize":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209412_375x500.jpg","urlSecureThumbnail":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209412_100x133.jpg","urlInsecureFullsize":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209412_375x500.jpg","urlInsecureThumbnail":"http://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209412_100x133.jpg","original":{"type":"Original","fileSize":"93181","resolutionX":"375","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209412_375x500.jpg"},"large":{"type":"Large","fileSize":"93181","resolutionX":"375","resolutionY":"500","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209412_375x500.jpg"},"small":{"type":"Small","fileSize":"3808","resolutionX":"100","resolutionY":"133","url":"https://s3.amazonaws.com/filestore.rescuegroups.org/3699/pictures/animals/4118/4118180/10209412_100x133.jpg"}}],"animalVideos":[],"animalVideoUrls":[]}}}
@@ -0,0 +1,20 @@
1
+ {
2
+ "status": "error",
3
+ "messages": {
4
+ "generalMessages": [
5
+ {
6
+ "messageID": "1020",
7
+ "messageCriticality": "warning",
8
+ "messageText": "You provided an invalid result sort field. We used the object's default sort field instead."
9
+ },
10
+ {
11
+ "messageID": "1021",
12
+ "messageCriticality": "error",
13
+ "messageText": "You provided an invalid filter field name."
14
+ }
15
+ ],
16
+ "recordMessages": []
17
+ },
18
+ "foundRows": 0,
19
+ "data": []
20
+ }
@@ -0,0 +1 @@
1
+ {"status":"ok","messages":{"generalMessages":[],"recordMessages":[{"status":"ok","ID":36385,"messageID":"1014","messageCriticality":"info","messageText":"Successfully found the record(s)."}]},"data":[{"eventID":"36385","eventOrgID":"4516","eventName":"Weekly Mobile Adoption Event!!!","eventStart":"1/22/2011 10:00 AM","eventEnd":"1/22/2011 3:00 PM","eventUrl":"","eventDescription":"Come meet some of our fabulous dogs. Find yourself a new best friend or help us save a life by fostering! If you're interested in a particular dog, please email us and let us know so we can be sure she or he is there!","eventLocationID":"10422","eventSpecies":["Dog"],"locationName":"Pet Food Express","locationUrl":"","locationAddress":"Dolores and Market St.","locationCity":"San Francisco ","locationState":"CA","locationPostalcode":"94114","locationCountry":"United States","locationPhone":"","locationPhoneExt":"","locationEvents":"0"}]}
@@ -0,0 +1 @@
1
+ {"status":"ok","messages":{"generalMessages":[],"recordMessages":[]},"foundRows":"12","data":{"36385":{"eventID":"36385","eventOrgID":"4516","eventName":"Weekly Mobile Adoption Event!!!","eventStart":"1/22/2011 10:00 AM","eventEnd":"1/22/2011 3:00 PM","eventUrl":"","eventDescription":"Come meet some of our fabulous dogs. Find yourself a new best friend or help us save a life by fostering! If you're interested in a particular dog, please email us and let us know so we can be sure she or he is there!","eventLocationID":"10422","eventSpecies":["Dog"],"locationName":"Pet Food Express","locationUrl":"","locationAddress":"Dolores and Market St.","locationCity":"San Francisco ","locationState":"CA","locationPostalcode":"94114","locationCountry":"United States","locationPhone":"","locationPhoneExt":"","locationEvents":"0","locationID":"10422"},"36386":{"eventID":"36386","eventOrgID":"4516","eventName":"Weekly Mobile Adoption Event!!!","eventStart":"1/29/2011 10:00 AM","eventEnd":"1/29/2011 3:00 PM","eventUrl":"","eventDescription":"Come meet some of our fabulous dogs. Find yourself a new best friend or help us save a life by fostering! If you're interested in a particular dog, please email us and let us know so we can be sure she or he is there!","eventLocationID":"10422","eventSpecies":["Dog"],"locationName":"Pet Food Express","locationUrl":"","locationAddress":"Dolores and Market St.","locationCity":"San Francisco ","locationState":"CA","locationPostalcode":"94114","locationCountry":"United States","locationPhone":"","locationPhoneExt":"","locationEvents":"0","locationID":"10422"},"36387":{"eventID":"36387","eventOrgID":"4516","eventName":"Weekly Mobile Adoption Event!!!","eventStart":"2/5/2011 10:00 AM","eventEnd":"2/5/2011 3:00 PM","eventUrl":"","eventDescription":"Come meet some of our fabulous dogs. Find yourself a new best friend or help us save a life by fostering! If you're interested in a particular dog, please email us and let us know so we can be sure she or he is there!","eventLocationID":"10422","eventSpecies":["Dog"],"locationName":"Pet Food Express","locationUrl":"","locationAddress":"Dolores and Market St.","locationCity":"San Francisco ","locationState":"CA","locationPostalcode":"94114","locationCountry":"United States","locationPhone":"","locationPhoneExt":"","locationEvents":"0","locationID":"10422"},"36388":{"eventID":"36388","eventOrgID":"4516","eventName":"Weekly Mobile Adoption Event!!!","eventStart":"2/12/2011 10:00 AM","eventEnd":"2/12/2011 3:00 PM","eventUrl":"","eventDescription":"Come meet some of our fabulous dogs. Find yourself a new best friend or help us save a life by fostering! If you're interested in a particular dog, please email us and let us know so we can be sure she or he is there!","eventLocationID":"10422","eventSpecies":["Dog"],"locationName":"Pet Food Express","locationUrl":"","locationAddress":"Dolores and Market St.","locationCity":"San Francisco ","locationState":"CA","locationPostalcode":"94114","locationCountry":"United States","locationPhone":"","locationPhoneExt":"","locationEvents":"0","locationID":"10422"},"36389":{"eventID":"36389","eventOrgID":"4516","eventName":"Weekly Mobile Adoption Event!!!","eventStart":"2/19/2011 10:00 AM","eventEnd":"2/19/2011 3:00 PM","eventUrl":"","eventDescription":"Come meet some of our fabulous dogs. Find yourself a new best friend or help us save a life by fostering! If you're interested in a particular dog, please email us and let us know so we can be sure she or he is there!","eventLocationID":"10422","eventSpecies":["Dog"],"locationName":"Pet Food Express","locationUrl":"","locationAddress":"Dolores and Market St.","locationCity":"San Francisco ","locationState":"CA","locationPostalcode":"94114","locationCountry":"United States","locationPhone":"","locationPhoneExt":"","locationEvents":"0","locationID":"10422"},"36390":{"eventID":"36390","eventOrgID":"4516","eventName":"Weekly Mobile Adoption Event!!!","eventStart":"2/26/2011 10:00 AM","eventEnd":"2/26/2011 3:00 PM","eventUrl":"","eventDescription":"Come meet some of our fabulous dogs. Find yourself a new best friend or help us save a life by fostering! If you're interested in a particular dog, please email us and let us know so we can be sure she or he is there!","eventLocationID":"10422","eventSpecies":["Dog"],"locationName":"Pet Food Express","locationUrl":"","locationAddress":"Dolores and Market St.","locationCity":"San Francisco ","locationState":"CA","locationPostalcode":"94114","locationCountry":"United States","locationPhone":"","locationPhoneExt":"","locationEvents":"0","locationID":"10422"},"36391":{"eventID":"36391","eventOrgID":"4516","eventName":"Weekly Mobile Adoption Event!!!","eventStart":"3/5/2011 10:00 AM","eventEnd":"3/5/2011 3:00 PM","eventUrl":"","eventDescription":"Come meet some of our fabulous dogs. Find yourself a new best friend or help us save a life by fostering! If you're interested in a particular dog, please email us and let us know so we can be sure she or he is there!","eventLocationID":"10422","eventSpecies":["Dog"],"locationName":"Pet Food Express","locationUrl":"","locationAddress":"Dolores and Market St.","locationCity":"San Francisco ","locationState":"CA","locationPostalcode":"94114","locationCountry":"United States","locationPhone":"","locationPhoneExt":"","locationEvents":"0","locationID":"10422"},"36392":{"eventID":"36392","eventOrgID":"4516","eventName":"Weekly Mobile Adoption Event!!!","eventStart":"3/12/2011 10:00 AM","eventEnd":"3/12/2011 3:00 PM","eventUrl":"","eventDescription":"Come meet some of our fabulous dogs. Find yourself a new best friend or help us save a life by fostering! If you're interested in a particular dog, please email us and let us know so we can be sure she or he is there!","eventLocationID":"10422","eventSpecies":["Dog"],"locationName":"Pet Food Express","locationUrl":"","locationAddress":"Dolores and Market St.","locationCity":"San Francisco ","locationState":"CA","locationPostalcode":"94114","locationCountry":"United States","locationPhone":"","locationPhoneExt":"","locationEvents":"0","locationID":"10422"},"36393":{"eventID":"36393","eventOrgID":"4516","eventName":"Weekly Mobile Adoption Event!!!","eventStart":"3/19/2011 10:00 AM","eventEnd":"3/19/2011 3:00 PM","eventUrl":"","eventDescription":"Come meet some of our fabulous dogs. Find yourself a new best friend or help us save a life by fostering! If you're interested in a particular dog, please email us and let us know so we can be sure she or he is there!","eventLocationID":"10422","eventSpecies":["Dog"],"locationName":"Pet Food Express","locationUrl":"","locationAddress":"Dolores and Market St.","locationCity":"San Francisco ","locationState":"CA","locationPostalcode":"94114","locationCountry":"United States","locationPhone":"","locationPhoneExt":"","locationEvents":"0","locationID":"10422"},"36394":{"eventID":"36394","eventOrgID":"4516","eventName":"Weekly Mobile Adoption Event!!!","eventStart":"3/26/2011 10:00 AM","eventEnd":"3/26/2011 3:00 PM","eventUrl":"","eventDescription":"Come meet some of our fabulous dogs. Find yourself a new best friend or help us save a life by fostering! If you're interested in a particular dog, please email us and let us know so we can be sure she or he is there!","eventLocationID":"10422","eventSpecies":["Dog"],"locationName":"Pet Food Express","locationUrl":"","locationAddress":"Dolores and Market St.","locationCity":"San Francisco ","locationState":"CA","locationPostalcode":"94114","locationCountry":"United States","locationPhone":"","locationPhoneExt":"","locationEvents":"0","locationID":"10422"},"36395":{"eventID":"36395","eventOrgID":"4516","eventName":"Weekly Mobile Adoption Event!!!","eventStart":"4/2/2011 10:00 AM","eventEnd":"4/2/2011 3:00 PM","eventUrl":"","eventDescription":"Come meet some of our fabulous dogs. Find yourself a new best friend or help us save a life by fostering! If you're interested in a particular dog, please email us and let us know so we can be sure she or he is there!","eventLocationID":"10422","eventSpecies":["Dog"],"locationName":"Pet Food Express","locationUrl":"","locationAddress":"Dolores and Market St.","locationCity":"San Francisco ","locationState":"CA","locationPostalcode":"94114","locationCountry":"United States","locationPhone":"","locationPhoneExt":"","locationEvents":"0","locationID":"10422"},"36396":{"eventID":"36396","eventOrgID":"4516","eventName":"Weekly Mobile Adoption Event!!!","eventStart":"4/9/2011 10:00 AM","eventEnd":"4/9/2011 3:00 PM","eventUrl":"","eventDescription":"Come meet some of our fabulous dogs. Find yourself a new best friend or help us save a life by fostering! If you're interested in a particular dog, please email us and let us know so we can be sure she or he is there!","eventLocationID":"10422","eventSpecies":["Dog"],"locationName":"Pet Food Express","locationUrl":"","locationAddress":"Dolores and Market St.","locationCity":"San Francisco ","locationState":"CA","locationPostalcode":"94114","locationCountry":"United States","locationPhone":"","locationPhoneExt":"","locationEvents":"0","locationID":"10422"}}}
@@ -0,0 +1 @@
1
+ {"status":"ok","messages":{"generalMessages":[],"recordMessages":[{"status":"ok","ID":660,"messageID":"1014","messageCriticality":"info","messageText":"Successfully found the record(s)."}]},"data":[{"orgID":"660","orgAbout":"","orgAdoptionProcess":"Adoption Fees are:$250 - Adults & $300 - Puppies. All are vetted, spay/neutered, microchipped and other known medical conditions addressed","orgAdoptionUrl":"","orgCommonapplicationAccept":"No","orgDonationUrl":"","orgEmail":"info@atdr.org","orgFacebookUrl":"http://www.facebook.com/pages/All-Texas-Dachshund-Rescue-ATDR/55375608508","orgFax":"","orgLocation":"77584","orgAddress":"P.O. Box 841336","orgCity":"Pearland","orgCountry":"United States","orgPostalcode":"77584","orgState":"TX","orgPlus4":"","orgMeetPets":"Visit us online at our website and Facebook page or at one of our events","orgName":"All Texas Dachshund Rescue","orgPhone":"","orgServeAreas":"State of Texas including the Houston, DFW, Austin & San Antonio metroplexes","orgServices":"Adoptions","orgSponsorshipUrl":"","orgType":"Rescue","orgWebsiteUrl":"http://www.atdr.org"}]}
@@ -0,0 +1 @@
1
+ {"status":"ok","messages":{"generalMessages":[],"recordMessages":[]},"foundRows":"1","data":{"660":{"orgAbout":"","orgAdoptionProcess":"Adoption Fees are:$250 - Adults & $300 - Puppies. All are vetted, spay/neutered, microchipped and other known medical conditions addressed","orgAdoptionUrl":"","orgCommonapplicationAccept":"No","orgDonationUrl":"","orgEmail":"info@atdr.org","orgFacebookUrl":"http://www.facebook.com/pages/All-Texas-Dachshund-Rescue-ATDR/55375608508","orgFax":null,"orgID":"660","orgLocation":"77584","orgAddress":"P.O. Box 841336","orgCity":"Pearland","orgCountry":"United States","orgPostalcode":"77584","orgState":"TX","orgPlus4":"","orgMeetPets":"Visit us online at our website and Facebook page or at one of our events","orgName":"All Texas Dachshund Rescue","orgPhone":"","orgServeAreas":"State of Texas including the Houston, DFW, Austin & San Antonio metroplexes","orgServices":"Adoptions","orgSponsorshipUrl":"","orgType":"Rescue","orgWebsiteUrl":"http://www.atdr.org"}}}
@@ -0,0 +1,12 @@
1
+ TEST_ORG_ID = 660
2
+ TEST_ORG_NAME = 'All Texas Dachshund Rescue'
3
+ TEST_ANIMAL_BREED = 'Corgi'
4
+ TEST_ANIMAL_ID = 1001923
5
+ TEST_EVENT_ID = 36385
6
+ TEST_EVENT_NAME = 'Weekly Mobile Adoption Event!!!'
7
+ NOT_FOUND_ORG_NAME = 'Bad Dogs Only'
8
+ NOT_FOUND_ORG_ID = -1
9
+ NOT_FOUND_ANIMAL_BREED = 'banana'
10
+ NOT_FOUND_ANIMAL_ID = -1
11
+ NOT_FOUND_EVENT_ID = -1
12
+ NOT_FOUND_EVENT_NAME = 'No no doge'
@@ -0,0 +1,55 @@
1
+ require_relative '../spec_helper'
2
+ require_relative '../../models/animal'
3
+
4
+ module RescueGroups
5
+ describe Animal do
6
+ describe 'organization' do
7
+ context 'given an animal' do
8
+ subject { a = Animal.new; a.organization_id = TEST_ORG_ID; a.organization = organization; a }
9
+
10
+ context 'organization is not present' do
11
+ let(:organization) { nil }
12
+
13
+ it 'fetches the organization' do
14
+ expect(subject.organization).to_not be_nil
15
+ end
16
+
17
+ it 'is an organization' do
18
+ expect(subject.organization).to be_a(Organization)
19
+ end
20
+ end
21
+
22
+ context 'organization is present' do
23
+ let(:organization) { Organization.new }
24
+
25
+ it 'does not call out to RescueGroups' do
26
+ expect(described_class).to_not receive(:find)
27
+ subject.organization
28
+ end
29
+ end
30
+ end
31
+ end
32
+
33
+ describe 'pictures' do
34
+ subject { described_class.find(TEST_ANIMAL_ID) }
35
+
36
+ it 'has pictures with thumbnails' do
37
+ subject.pictures.each do |picture|
38
+ expect(picture.url_thumb).to_not be_nil
39
+ end
40
+ end
41
+
42
+ it 'has pictures will full size images' do
43
+ subject.pictures.each do |picture|
44
+ expect(picture.url).to_not be_nil
45
+ end
46
+ end
47
+
48
+ it 'all pictures have the right animal id' do
49
+ subject.pictures.each do |picture|
50
+ expect(picture.animal_id).to eq(TEST_ANIMAL_ID)
51
+ end
52
+ end
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,33 @@
1
+ require_relative '../spec_helper'
2
+ require_relative '../../models/event'
3
+
4
+ module RescueGroups
5
+ describe Event do
6
+ describe 'organization' do
7
+ context 'given an event' do
8
+ subject { e = Event.new; e.organization_id = TEST_ORG_ID; e.organization = organization; e }
9
+
10
+ context 'organization is not present' do
11
+ let(:organization) { nil }
12
+
13
+ it 'fetches the organization' do
14
+ expect(subject.organization).to_not be_nil
15
+ end
16
+
17
+ it 'is an organization' do
18
+ expect(subject.organization).to be_a(Organization)
19
+ end
20
+ end
21
+
22
+ context 'organization is present' do
23
+ let(:organization) { Organization.new }
24
+
25
+ it 'does not call out to RescueGroups' do
26
+ expect(described_class).to_not receive(:find)
27
+ subject.organization
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,35 @@
1
+ require_relative '../spec_helper'
2
+ require_relative '../../models/organization'
3
+
4
+ module RescueGroups
5
+ describe Organization do
6
+ describe 'animals' do
7
+ context 'given an organization' do
8
+ subject { o = Organization.new; o.id = TEST_ORG_ID; o.animals = animals; o }
9
+
10
+ context 'the animals array does not exist in memory' do
11
+ let(:animals) { [] }
12
+
13
+ it 'fetches the animals' do
14
+ expect(subject.animals).to_not be_empty
15
+ end
16
+
17
+ it 'is a list of animals' do
18
+ subject.animals.each do |animal|
19
+ expect(animal).to be_a(Animal)
20
+ end
21
+ end
22
+ end
23
+
24
+ context 'animals are present' do
25
+ let(:animals) { [Animal.new] }
26
+
27
+ it 'does not call out to RescueGroups' do
28
+ expect(Animal).to_not receive(:where)
29
+ subject.animals
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,257 @@
1
+ require_relative '../spec_helper'
2
+ require_relative '../../lib/queryable'
3
+
4
+ class TestClass
5
+ FIELDS = { some_test_field: 'SomeTestField' }
6
+ include RescueGroups::Queryable
7
+
8
+ def initialize(anything)
9
+ end
10
+
11
+ def self.search_engine_class
12
+ TestSearch
13
+ end
14
+
15
+ def self.object_type;end
16
+
17
+ def self.object_fields
18
+ TestClass
19
+ end
20
+
21
+ def self.fields
22
+ FIELDS
23
+ end
24
+ end
25
+
26
+ class TestSearch < RescueGroups::BaseSearch
27
+ def self.fields
28
+ {}
29
+ end
30
+ end
31
+
32
+ module RescueGroups
33
+ describe Queryable do
34
+ subject { TestClass.new }
35
+
36
+ before do
37
+ allow(TestClass).to receive(:object_fields) { TestClass }
38
+ allow(TestClass).to receive_message_chain(:object_fields, :all)
39
+ end
40
+
41
+ describe '.find' do
42
+ before do
43
+ allow(TestClass)
44
+ .to receive_message_chain(:api_client, :post_and_respond) { response }
45
+ end
46
+
47
+ context 'response is successful' do
48
+ let(:response) do
49
+ TestResponse.new(200,
50
+ { 'status' => 'ok', 'data' => data })
51
+ end
52
+
53
+ before do
54
+ allow(response).to receive(:success?) { true }
55
+ end
56
+
57
+ context 'data is returned' do
58
+ let(:data) { [{ foo: :bar }] }
59
+
60
+ it 'calls new with the data' do
61
+ expect(TestClass).to receive(:new).with(data.first)
62
+ response = TestClass.find(1)
63
+ expect(response).to_not be_a(Array)
64
+ end
65
+
66
+ context 'multiple ids are returned' do
67
+ let(:data) { [{ foo: :bar }, { baz: :qux }] }
68
+
69
+ it 'returns an array of objects' do
70
+ expect(TestClass).to receive(:new).twice
71
+ response = TestClass.find([2, 4])
72
+ expect(response).to be_a(Array)
73
+ expect(response.length).to eq(2)
74
+ end
75
+ end
76
+ end
77
+
78
+ context 'no data is returned' do
79
+ let(:data) { nil }
80
+ it 'raises an exception' do
81
+ expect do
82
+ TestClass.find(-1)
83
+ end.to raise_error(NotFound, /Unable to find/)
84
+ end
85
+ end
86
+ end
87
+
88
+ context 'response is not successful' do
89
+ let(:response) do
90
+ TestResponse.new(200,
91
+ { 'status' => 'error', 'data' => [{ foo: :bar }] })
92
+ end
93
+
94
+ it 'raises an exception' do
95
+ expect do
96
+ TestClass.find(20)
97
+ end.to raise_error(NotFound, /Unable to find/)
98
+ end
99
+ end
100
+ end
101
+
102
+ describe '.where' do
103
+ context 'automatic offsets' do
104
+ context 'returned data row count is larger than the limit' do
105
+ let(:response) do
106
+ TestResponse.new(200,
107
+ { 'status' => 'ok', 'found_rows' => 3000, 'data' => { anything => [anything]}})
108
+ end
109
+
110
+ before do
111
+ api_client = Object.new
112
+ allow(api_client).to receive(:post_and_respond) { response}
113
+ allow(TestClass).to receive(:api_client) { api_client }
114
+ allow(response).to receive(:success?) { true }
115
+ end
116
+
117
+ it 'only calls the api once' do
118
+ expect(TestClass.api_client).to receive(:post_and_respond).once
119
+ TestClass.where(anything: anything)
120
+ end
121
+
122
+ context 'the load all results param is enabled' do
123
+ before do
124
+ allow(RescueGroups.config).to receive(:load_all_results) { true }
125
+ end
126
+
127
+ it 'makes additonal requests with an offset until the row count is met' do
128
+ expect(TestClass.api_client).to receive(:post_and_respond)
129
+ .exactly(31).times
130
+ TestClass.where(anything: anything)
131
+ end
132
+ end
133
+ end
134
+ end
135
+
136
+ context 'basic behaviour' do
137
+ before do
138
+ allow(TestClass)
139
+ .to receive_message_chain(:api_client, :post_and_respond) { response }
140
+ end
141
+
142
+ context 'response is successful' do
143
+ context 'data is returned' do
144
+ let(:response) do
145
+ TestResponse.new(200,
146
+ { 'status' => 'ok', 'data' => { id: anything, another_id: anything } })
147
+ end
148
+
149
+ it 'returns the data as an array' do
150
+ expect(TestClass).to receive(:new).twice
151
+ response = TestClass.where(anything: anything)
152
+ expect(response).to be_a(Array)
153
+ end
154
+ end
155
+
156
+ context 'no data is returned' do
157
+ let(:response) do
158
+ TestResponse.new(200,
159
+ { 'status' => 'ok', 'data' => { } })
160
+ end
161
+
162
+ it 'returns an empty array' do
163
+ response = TestClass.where(anything: anything)
164
+ expect(response).to eq([])
165
+ end
166
+ end
167
+ end
168
+
169
+ context 'response is not successful' do
170
+ let(:response) do
171
+ TestResponse.new(200,
172
+ { 'status' => 'error', 'data' => nil })
173
+ end
174
+
175
+ it 'raises error' do
176
+ expect do
177
+ TestClass.where(anything: anything)
178
+ end.to raise_error(InvalidRequest, /Problem with request/)
179
+ end
180
+ end
181
+ end
182
+
183
+ context 'querying with something besides equals to' do
184
+ let(:response) do
185
+ TestResponse.new(200,
186
+ { 'status' => 'ok', 'data' => { id: anything, another_id: anything } })
187
+ end
188
+ let(:equality_filter) { { less_than: 1 } }
189
+
190
+ before do
191
+ allow(TestClass)
192
+ .to receive_message_chain(:api_client, :post_and_respond) { response }
193
+ allow(TestClass)
194
+ .to receive(:where_body) { {} }
195
+ end
196
+
197
+ it 'makes a filter with the mapped equality method' do
198
+ expect(Filter).to receive(:new).with("SomeTestField", :less_than, 1).and_call_original
199
+ TestClass.where(some_test_field: equality_filter)
200
+ end
201
+ end
202
+
203
+ describe 'result set modifiers' do
204
+ context 'limit' do
205
+ let(:response) do
206
+ TestResponse.new(200,
207
+ { 'status' => 'ok', 'data' => { id: anything, another_id: anything } })
208
+ end
209
+
210
+ before do
211
+ allow(TestClass)
212
+ .to receive_message_chain(:api_client, :post_and_respond) { response }
213
+ end
214
+
215
+ it 'passes the limit to the search engine' do
216
+ expect(TestSearch).to receive(:new).with(limit: 10).and_call_original
217
+ TestClass.where(anything: anything, limit: 10)
218
+ end
219
+ end
220
+
221
+ context 'start' do
222
+ let(:response) do
223
+ TestResponse.new(200,
224
+ { 'status' => 'ok', 'data' => { id: anything, another_id: anything } })
225
+ end
226
+
227
+ before do
228
+ allow(TestClass)
229
+ .to receive_message_chain(:api_client, :post_and_respond) { response }
230
+ end
231
+
232
+ it 'passes the limit to the search engine' do
233
+ expect(TestSearch).to receive(:new).with(start: 10).and_call_original
234
+ TestClass.where(anything: anything, start: 10)
235
+ end
236
+ end
237
+
238
+ context 'sort' do
239
+ let(:response) do
240
+ TestResponse.new(200,
241
+ { 'status' => 'ok', 'data' => { id: anything, another_id: anything } })
242
+ end
243
+
244
+ before do
245
+ allow(TestClass)
246
+ .to receive_message_chain(:api_client, :post_and_respond) { response }
247
+ end
248
+
249
+ it 'passes the limit to the search engine' do
250
+ expect(TestSearch).to receive(:new).with(sort: :breed).and_call_original
251
+ TestClass.where(anything: anything, sort: :breed)
252
+ end
253
+ end
254
+ end
255
+ end
256
+ end
257
+ end