/* ./_js/page_landing_pools.js */

// - execute when the document is ready
$(document).ready(function() {
	poolsInit(); // initialize pools
});


// -- initialize pools
function poolsInit() {
	$('div.pool')
		.css('cursor', 'pointer')
		.click(function() {
			goToURL($(this).find('a:first').attr('href'));
		})
		.hover(function() {
			$(this)
				.addClass('hover')
				.find('div.pool_icons')
					.hide()
				.siblings('div.pool_details')
					.show();
		}, function() {
			$(this)
				.removeClass('hover')
				.find('div.pool_details')
					.hide()
				.siblings('div.pool_icons')
					.show();
		})
		.find('a')
			.css('text-decoration', 'none');
}
