$(document).ready(function(){
	
	// Fancy tool-tip
	$('#swatchThumbnails img').tooltip({
		delay: 0,
		track: true,
		showURL: false
	});
	
	// Hide all instances of .tabPanel, except for the very first one.
	$('.tabPanel:not(:first)').hide();
	
	// When someone clicks on the More Info link, show the More Info panel
	$('#tabLinkMoreInfo a').click(function(){
		$('.tabPanel:visible').hide();
		$('#moreInfo').show();
		return false;
	});
	
	// When someone clicks on the Commercials link, show the Commercials panel
	$('#tabLinkCommercials a').click(function(){
		$('.tabPanel:visible').hide();
		$('#productCommercials').show();
		return false;
	});
	
	// When someone clicks on the Send to Friend link, show the Send to Friend panel
	$('#tabLinkSendFriend a').click(function(){
		$('.tabPanel:visible').hide();
		$('#sendFriend').show();
		return false;
	});
	
});