// basic show and hide
$(document).ready(function() {
					
					
	$('div.grandma').hide();
	
	$('#showTara').hover( function() {
		$('div.grandma').hide();																		
		$('div.tara').show();
	});
	
	$('#showGrandma').hover( function() {
		$('div.tara').hide();
		$('div.grandma').show();		
	});
	
	/////////////////////////
	
	$('div.bearMail').hide();		
	$('div.shows').hide();	
	$('div.blog').hide();
	$('div.shop').hide();
	
	$('#mail-button').hover( function() {
		$('div.bearMail').show();		
		$('div.shows').hide();	
		$('div.blog').hide();
		$('div.shop').hide();
	});	
	
	$('#shows-button').hover( function() {
		$('div.bearMail').hide();		
		$('div.shows').show();	
		$('div.blog').hide();
		$('div.shop').hide();
	});	
	
	$('#blog-button').hover( function() {
		$('div.bearMail').hide();		
		$('div.shows').hide();	
		$('div.blog').show();
		$('div.shop').hide();
	});	
	
	$('#shop-button').hover( function() {
		$('div.bearMail').hide();		
		$('div.shows').hide();	
		$('div.blog').hide();
		$('div.shop').show();
	});		

});