jQuery.noConflict();


jQuery(document).ready( function() {
   
    jQuery('a.external').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });

	/* ----------------- Endless Scroll ------------- */
	
	var maxheight = jQuery('.supporter').height();

	jQuery('.supporter').css('overflow', 'hidden').height(800);

	jQuery(document).endlessScroll({
	fireOnce: false,
	bottomPixels: 100,
	fireDelay: 800,
	callback: function(p){
		if (jQuery('.supporter').height() < maxheight) {
			jQuery('.supporter').height(800+(p*100));
		}
	}
	});
	
   
});