// setup routines specific to the PRODUCTS page
$(function() {
	$("#softwareTabs").tabs({
		cookie: { 
			expires: 5
		} 
	});
	
	$(".featureLine").hover(function(e) { $(this).addClass('backLightGray'); }, function(e) { $(this).removeClass('backLightGray'); });
	$(".featureList").hover(function(e) { $(this).addClass('backLightGray'); }, function(e) { $(this).removeClass('backLightGray'); });
	
	/* $(".featureLine:eq(0)").click(function(e) {
		$("#featureDialog" ).dialog({
			height: 'auto',
			width: 400,
			modal: true,
			title: 'Query Wizards',
			open: function(event, ui) { $("#featureDialog" ).load('help/featureQueryWizards.asp'); }
		});
	});
	$(".featureLine:eq(1)").click(function(e) {
		$("#featureDialog" ).dialog({
			height: 'auto',
			width: 400,
			modal: true,
			title: 'W-9, B-Notice Generation',
			open: function(event, ui) { $("#featureDialog" ).load('help/featureW9Generation.asp'); }
		});
	}); */
	
	
});
