$(document).ready(function() {
	// loadFirebugConsole();
	
	$('.info').hide();
	
	$('.cells li').each(
		function(intIndex) {
			$(this).bind('mouseenter', function() {
				$(this).find('.info').slideDown(200);
				// console.log('enter');
			});
			
			$(this).bind('mouseleave', function() {
				$(this).find('.info').slideUp(200);
				// console.log('leave');
			});
		}
	);

	// target external links into new windows
	$('a').each(function(index) {
		if ($(this).attr('rel') == 'external') $(this).attr('target', '_blank');
	});
});
