// JavaScript Document

function initCategories(){
	if ($('howitsmade_nav_1') != null){Event.observe('howitsmade_nav_1', 'click', showPutting, false)};
	if ($('howitsmade_nav_2') != null){Event.observe('howitsmade_nav_2', 'click', showMaking, false)};
}

function showPutting(e){
	Event.stop(e);
	
	$('left_image').hide();
	$('left_text').show();
	
	$('making_flash').hide();
	$('howitsmade_nav_2').removeClassName('sel');
	
	$('putting_flash').show();
	$('howitsmade_nav_1').addClassName('sel');
}
function showMaking(e){
	Event.stop(e);
	
	$('left_image').show();
	$('left_text').hide();
	
	$('putting_flash').hide();
	$('howitsmade_nav_1').removeClassName('sel');
	
	$('making_flash').show();
	$('howitsmade_nav_2').addClassName('sel');
}
Event.observe(window, 'load', initCategories, false);