$(document).ready(function(){

	$tags = $('#tags');
	$('#hoverHolder').hoverIntent({
		'over': function () {
		
			$tags
				.stop(true, true)
				.animate({opacity: 'toggle', height: 'toggle'}, 200);
		},
		'out': function () {
			$tags
				.stop(true, true)
				.animate({opacity: 'toggle', height: 'toggle'}, 200);
		},
		'timeout': 100
	});
});























