﻿/*
'--------------------------------------------------------------------------------------------------
' Title			: Bows/Products BROWSE JavaScript
' Description	: JavaScript functions and declarations for the products Browse sections
'--------------------------------------------------------------------------------------------------
' History
' 11/11/2008	: DPE - Created Page
'--------------------------------------------------------------------------------------------------
*/

// Adds actions to show and hide the FAQ answers & Manuals
function initItemView(){
	
	$("#FAQ dd").hide();
	
	$("#FAQ dt").click(function(){
		$("dd").hide("fast");
		$(this).next("dd").show("normal");
	});
}

// Replaces tradtional body onLoad="" functionality throughout the site
$(document).ready(function(){
	initItemView();	// Adds actions to show and hide the FAQ answers & Manuals
});
