var base;
base = '/app/';

jQuery(document).ready(function ($) {
	$('p.comments').each(function () {
		var t = $(this).height() + 30;
		$(this).css('top', '-' + t + 'px');
	});
	
	$('a.comments').hover(
		function () {
			$(this).next('p.comments').fadeIn();
		},
		function () {
			$(this).next('p.comments').fadeOut();
		}
	);
});
