// avoid jQuery namespace issues with mootools library
jQuery.noConflict();

jQuery(document).ready(function() {
// Show home info scroller when <A> tag's id contains 'triggerfpop'
	jQuery('#triggercpop').click(function(){
		
		jQuery('#home-extra').toggle('fast');
		return false;
	});
	
	// Hide scroller if you click on anything but the scroller
	jQuery('body').click(function(){
			jQuery("#home-extra").hide('fast');
	});
	
	jQuery('#home-extra').click(function(event){
		event.stopPropagation();
	});
});
