$(document).ready(function(){

// These show and hide tabs

// Hide things on load
//      $('#tab-contents-2').hide();
//      $('#tab-contents-3').hide();	  
//      $('#tab-contents-4').hide();
//      $('#tab-contents-5').hide();  

// show/hide on pagination link click
    $('#tab-1').click(function () {
      $('.vert-tab-content').hide(); 											 
      $('#tab-contents-1').show();
    });
    $('#tab-2').click(function () {
      $('.vert-tab-content').hide(); 											 
      $('#tab-contents-2').show();
    });
    $('#tab-3').click(function () {
      $('.vert-tab-content').hide(); 											 
      $('#tab-contents-3').show();
    });
    $('#tab-4').click(function () {
      $('.vert-tab-content').hide(); 											 
      $('#tab-contents-4').show();
    });
	$('#tab-5').click(function () {
      $('.vert-tab-content').hide(); 											 
      $('#tab-contents-5').show();
    });


// Change selected tab 
    $('.tabs').click(function () {
      $('.tabs').removeClass("selected");
      $(this).addClass("selected");
    });
// Change selected tab news
    $('.press-tabs').click(function () {
      $('.press-tabs').removeClass("chosen");
      $(this).addClass("chosen");
    });


    $('#tab-release').click(function () {
      $('#statements-box').hide(); 											 
      $('#releases-box').show();
    });
    $('#tab-statement').click(function () {
      $('#releases-box').hide(); 											 
      $('#statements-box').show();
    });
	
//	Stock button
	$('#ticker-btn').click(function() {
	$(this).toggleClass("open-state");
	$("#stock-info").toggle();
	return false;		
	});


}); // Closes Document Ready