$(function () {        
		$(".Quicklinks").hover
		(
		  function () {
			$(this).width('550');
			$(this).animate
			(
				{   height: '666px'  },               
				"slow"            
			); 
		  },
		  function () {
			$(this).animate
			(
				{   height: '536px'  },               
				"slow"    ,
				function() { $(this).width('136'); }        
			); 
		  }
		);   
});
