// JavaScript Document
$(document).ready(function() {
	
	var images = [
		'images/Gallery%20Pictures/tabHover.gif',
		'images/Gallery%20Pictures/tabBg.gif',
		
		'images/Gallery Pictures/Kimball Center Pancake Feed/pancakeFeed_1.jpg',
		'images/Gallery Pictures/Annual Meeting/annualMeeting_1b.jpg',
		'images/Gallery Pictures/Homecoming 2010/homecoming2010_15.jpg',
		'images/Gallery Pictures/kimballClassic.gif',
		
		'images/Gallery Pictures/Kimball Center Pancake Feed/pancakeFeed_2.jpg',
		'images/Gallery Pictures/Kimball Center Pancake Feed/pancakeFeed_3.jpg',
		'images/Gallery Pictures/Kimball Center Pancake Feed/pancakeFeed_4.jpg',
		'images/Gallery Pictures/Kimball Center Pancake Feed/pancakeFeed_5.jpg',
		'images/Gallery Pictures/Kimball Center Pancake Feed/pancakeFeed_6.jpg',
		'images/Gallery Pictures/Kimball Center Pancake Feed/pancakeFeed_7.jpg',
		'images/Gallery Pictures/Kimball Center Pancake Feed/pancakeFeed_8.jpg',
		'images/Gallery Pictures/Kimball Center Pancake Feed/pancakeFeed_9.jpg',
		'images/Gallery Pictures/Kimball Center Pancake Feed/pancakeFeed_10.jpg',
		'images/Gallery Pictures/Kimball Center Pancake Feed/pancakeFeed_11.jpg',
	];
	
	$(images).each(function() {
	var image = $('<img />').attr('src', this);
});
	
	var tabs = '.tabs li';
	var tabContent = '.tabContent';

	$(tabContent).css('display', 'none');
	$(tabContent + ':first').css('display', 'block');
	
	
	$(tabs).hover(function() {
		$(this).addClass('active')
	}, function() {
		$(this).removeClass('active')
		
	}); //End of Tabs Hover()
	
	$('.tabs li').click(function() {
		$(tabs).removeClass('tabsHover');
		$(this).addClass('tabsHover');
		$(tabContent).hide();
		
		
		var activeTab = $(this).find('a').attr('href');
		$(activeTab).css('display', 'block');
		return false;
	}); // End of click
		$(tabs + ':first').click();
		
		//Image Gallery
	$('.galleryThumbs a').click(function(evt) {
		evt.preventDefault();
		var imgPath = $(this).attr('href');
		var oldImage = $('.preview img');
		var newImage = $('<img src= "' + imgPath + '">');
		
		$('.preview').prepend(newImage);
		newImage.show();
		
		
		oldImage.hide( function() {
			$(this).remove();
		
		});
	}); //End of galleryTumbs Click()
		$('.galleryThumbs a:first').click();
	
	
	/*------ Individual Tabs Clicked ------*/
	//$('.tabs li').click(function() {
		//$('.tabs li img').css('border', '0')
		//$(this).find('img').css('border', '5px dashed #000000')
	//}); //End of tab clicked
	
}); //End of Ready()
