function blup(){
	$('.blup').hover(function() {
		$(this).children('span')
			.stop(true)
			.animate({
				height: 144,
				paddingTop: 14,
				paddingBottom: 14
			}, 250);
	}, function() {
		$(this).children('span')
			.stop(true)
			.animate({
				height: 0,
				paddingTop: 0,
				paddingBottom: 0
			}, 200);
	});

	$('.blup').click(function() {
		window.open($(this).attr('href'), '');
		return false;
	});
}


