/********************************************

The Immokalee Foundation
jQuery Clickable Modules

Version: 1.0
Author: Poccuo (http://www.poccuo.com)        	

*******************************************/

$(document).ready(function() {
 	 
	
	//footer promo mod setup
	$("#footer_module .module").each(function(i, item) {

		//click
		$(item).find("h3 a").each(function(j, link) {

			$(item).attr('link', link);

			$(item).click(function() {
				window.location = $(this).attr('link');
				return false;
			});

			return false;
		});

		//add pointer if it has a link
		if ($(item).find("h3 a").length > 0) {$(item).css('cursor', 'pointer');}
	});
	
	//video and photo modules
	$("#links_wrapper .module").each(function(i, item) {

		//click
		$(item).find("h3 a").each(function(j, link) {

			$(item).attr('link', link);

			$(item).click(function() {
				window.location = $(this).attr('link');
				return false;
			});

			return false;
		});

		//add pointer if it has a link
		if ($(item).find("h3 a").length > 0) {$(item).css('cursor', 'pointer');}
	});
	



});

