// JavaScript Document
$(document).ready(function () {
    $(".address").hover(function () {
	$(".address").animate( { height:"360px" }, { queue:false, duration:250 } )
		.animate( { width:"380px" }, 250)
		
	},
	function () {
		$(".address").animate( { height:"16px" }, { queue: false, duration:250 } )
		.animate( { width:"380px" }, 250);
	});
	
});
