// JavaScript Document
$(document).ready(function () {
    $(".contactUs").hover(function () {
	$(".contactUs").animate( { height:"95px" }, { queue:false, duration:250 } )
		.animate( { width:"150px" }, 250)
		
	},
	function () {
		$(".contactUs").animate( { height:"18px" }, { queue: false, duration:250 } )
		.animate( { width:"150px" }, 250);
	});
});
