$(document).ready(function() {

	//##Fullsize (lightbox-like feature)
	$("img").fullsize();

	$("table tr.cLeftNavL1ChildList").hide();
	$("table tr.cLeftNavParentItem").hover(function() {
		$(this).next("tr.cLeftNavL1ChildList").show();
//		$(this).next("tr.cLeftNavL1ChildList").fadeIn("slow");
	},function() {
		$(this).next("tr.cLeftNavL1ChildList").animate({opacity: 1.0}, 4000).fadeOut("slow");
	});

	//##Set the hover class for the left nav bar links
	$("table.cLeftNavTable a").hover(function() {
		$(this).addClass("cHoverLinkWhite");
	},function() {
		$(this).removeClass("cHoverLinkWhite");
	});

	//##Set the hover class for the top nav bar links
	$("table.cTopNavTable a").hover(function() {
		$(this).addClass("cHoverLinkWhite");
	},function() {
		$(this).removeClass("cHoverLinkWhite");
	});
	
//	$(".cProdlink").hover(function() {
//		$(this).addClass("cULLink");
//	},function() {
//		$(this).removeClass("cULLink");
//	});

	//## display product edit controls in jqModal window
	$("#output").jqm({ajax: '@href', trigger: 'a.edittrigger', target: 'div.jqmAlertContent', overlay: 0});

});
