$(function() {
	setupMenu();
});
/******************************/
function setupMenu() {
	$('div#menu ul li').hover(function() {
		$('ul#' + $(this).attr('id') + '-menu').show();
	}, function() {
		$('ul#' + $(this).attr('id') + '-menu').hide();
	});
	$('div#submenus ul').hover(function() { 
		$(this).show(); 
		thisid = $(this).attr('id');
		parentid = thisid.substring(0,5);
		$("#"+parentid+" a").addClass('selected');
	}, function() { 
		$(this).hide(); 
		$("#"+parentid+" a").removeClass('selected');
	});
	$('div#submenus ul ul').hover(function() { $(this).show(); }, function() { $(this).show(); });
}
function printWindow() {
    bV = parseInt(navigator.appVersion)
    if (bV >= 4) window.print()
}
String.prototype.endsWith = function(suffix) {
    return this.indexOf(suffix, this.length - suffix.length) !== -1;
};

