// ***************************************************************************
//   Capital IT Inc. Copyright (C) 2009. All Rights Reserved  $Revision: 1.15 $					 
// ***************************************************************************

var loading = false;
$(function(){
	// Pet gallery behavior
	$("#pet-gallery-container .gallery-link").live("click", function(){
		$.get(this.href, function(html){
			var $html = $(html).hide();
			$("#pet-gallery-container").html($html);
			$html.fadeIn("slow");
		});
		return false;
	});
	/*
	$("#animal-selection-container .breed-type-link").hover(function(){
			var $img = $("img", this);
			$("#animal-selection-container .breed-type-link img").not($img).css({opacity: 0.5});
		}, function() {
			$("#animal-selection-container .breed-type-link img").css({opacity: 1.0});
		}
	);
	*/
});
