
              jQuery(function() {
				//Hide (Collapse) the toggle containers on load
				jQuery('.right-holder-content').hide(); 		   
						   
                jQuery('.right-holder-title .right-arrow').click(function(event) {
                    event.preventDefault();
                    jQuery(this).parent().parent().find('.right-holder-content').slideToggle('fast');
                    return false;
                });
/*	
                jQuery.localScroll({
                    duration: 500,
                    target: jQuery(window)
                });
*/
            });
