// ---------------------------------------------------------------------------------------
// parknpool/includes/javascript/index.js
// Created:      2009/05/29
// Copyright (c) 2009 by ParknPool Corp., all rights reserved.
//
// 2009/05/29 mv	Add fadein and fadeout code for subcat lists.
// ---------------------------------------------------------------------------------------

//alert("index.js!");

//============================================================
// Wait for document...
//============================================================
$(document).ready(function() {
//	alert("Document Ready!");

	// When mouse is over Category Link, fade in the subcats list...
	$(".hpCatImgCell").hoverIntent(function(){
		var subCatID = "#" + $(this).attr("id") + "Subcats";
//		alert(subCatID + ' Fade In');
		$(subCatID).fadeIn("slow");
	},function(){
		var subCatID = "#" + $(this).attr("id") + "Subcats";
		$(subCatID).fadeOut("slow");
	}); // End When mouse is over Category Link.

}); // End document ready.
	  
