jQuery(document).ready(function(){
	// Initialize the table
	jQuery("#tbProducts tr:has(td)").tsort();

	jQuery("#menu a:contains('A-Z')").live('click', function(){ jQuery("#tbProducts tr:has(td)").tsort("",{order:"asc"}); jQuery(this).addClass('selected').siblings().removeClass('selected'); });
	jQuery("#menu a:contains('Z-A')").live('click', function(){ jQuery("#tbProducts tr:has(td)").tsort("",{order:"desc"}); jQuery(this).addClass('selected').siblings().removeClass('selected'); });
	jQuery("table#tbProducts td span, table#tbProducts td img, table#tbProducts td h3").live('click', function(){
		var element = jQuery(this);
		jQuery("#dialog").jqmShow();
		openInFrame(lightwindows + 'homehealthcare?product=' + jQuery(element).attr('alt'));
	});
});