jQuery(function(){
	jQuery('#topLftNavigation').find('a').hover(
		function(){
			if(jQuery(this).is('.active')){ return; }
			var imgHeight = jQuery(this).find('img').height();
			jQuery(this).stop().animate({
				'height': 300
			},300);
		},
		function(){
			if(jQuery(this).is('.active')){ return; }
			jQuery(this).stop().animate({
				'height': 265
			},300);
		}
	);
});
