// JavaScript Document
$(document).ready(function(){
	// Controls Tabs Homepage				  
	$('#tab_text_content #body_copy-1').hide(); // Hide all divs
	$('#tab_text_content #body_copy-2').hide(); // Hide all divs
	$('#tab_text_content #body_copy-1').show(); // Show the first div
	$('#tabs ul li:first').addClass('active'); // Set the class of the first link to active
	$('#tabs ul li a').click(function(){ //When any link is clicked
		$('#tabs ul li').removeClass('active'); // Remove active class from all links
		$(this).parent().addClass('active'); //Set clicked link class to active
		var currentTab = $(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
		$('#tab_text_content #body_copy-1:visible').fadeOut('normal',function(){ //fade out visible div
			$(currentTab).fadeIn('normal') //fade in target div
		});
		$('#tab_text_content #body_copy-2:visible').fadeOut('normal',function(){ //fade out visible div
			$(currentTab).fadeIn('normal') //fade in target div
		});return false;		
	});
	
    $("#middle_big_blocks #big_block_three tr:even").addClass("even");
    $("#middle_big_blocks #big_block_three tr:odd").addClass("odd");
	
	$("#news_events tr:even").addClass("even");
    $("#news_events tr:odd").addClass("odd");
	
	$("#news_events_alerts #mountaineer_news_events tr:even").addClass("even");
	$("#news_events_alerts #mountaineer_news_events tr:odd").addClass("odd");    
});

