/* ============================================================
top.js
 javascripts for index page of http://freec.cau1.com/
  created: 2009-01-06
  modified:
  $Date:: 2009-02-09 14:25:05#$
  $Author: nakamurak $
  $Revision: 76055 $
============================================================ */

(function($) {
	//execute right now
	freecLib.cssRules.add("#categoryItems ul.imageList li dl.itemSummary","display:none");
	var hideTab = freecLib.cssRules.add(".tabArea","display:none");

	$(function() {
		//execute when document's ready

		//set tabs
		$("ul.tabMenu").tabs(/*{cookie:{expires:30}}*/);
		freecLib.cssRules.remove(hideTab);


		//set popupHover to cateoryItems
		$("#categoryItems ul.imageList li p").each(function() {
			var popup = $(this).next("dl.itemSummary").css({"width":250});
			new freecLib.Class.PopupHover(this,popup);
		});


	});
})(jQuery);
