// When the DOM is ready, initialize the scripts.
		jQuery(function( jQuery ){
 
			// Get a reference to the container.
			var container = jQuery( "#container" );
			var container2 = jQuery( "#container2" );
 
 
			// Bind the link to toggle the slide.
			jQuery( ".panel-slide" ).click(
				function( event ){
					// Prevent the default event.
					event.preventDefault();
 
					// Toggle the slide based on its current
					// visibility.
					if (container.is( ":visible" )){
 
						// Hide - slide up.
						container.slideUp( 1000 );
 
					} else {
 
						// Show - slide down.
						container.slideDown( 1000 );
 
					}
				}
			);
			
			
			// Bind the link to toggle the slide. FOR INSIDE PAGES
			jQuery( ".panel-slide2" ).click(
				function( event ){
					// Prevent the default event.
					event.preventDefault();
 
					// Toggle the slide based on its current
					// visibility.
					if (container2.is( ":visible" )){
 
						// Hide - slide up.
						container2.slideUp( 1000 );
 
					} else {
 
						// Show - slide down.
						container2.slideDown( 1000 );
 
					}
				}
			);
			
 
		});
