$(document).ready(function () {
    $(".brutus").hover(function () {
	$(".brutus").animate( { height:"140px" }, { queue:false, duration:250 } )
		.animate( { width:"150px" }, 250)
		
	},
	function () {
		$(".brutus").animate( { height:"16px" }, { queue: false, duration:250 } )
		.animate( { width:"100px" }, 250);
	});
	
	$(".view").hover(function () {
	$(".view").animate( { height:"140px" }, { queue:false, duration:250 } )
		.animate( { width:"150px" }, 250)
	},
	function () {
		$(".view").animate( { height:"16px" }, { queue: false, duration:250 } )
		.animate( { width:"100px" }, 250);
	});
	
	$(".ourDogs").hover(function () {
	$(".ourDogs").animate( { height:"24.6em" }, { queue:false, duration:250 } )
		.animate( { width:"26.2em" }, 250);
	},
	function () {
		$(".ourDogs").animate( { height:"15px" }, { queue: false, duration:250 } )
		.animate( { width:"80px" }, 250);
	});


	
});