// JavaScript Document
// + --------------------------------------------------------------------------------------
// + iniMenu
// + --------------------------------------------------------------------------------------
function iniMenu() {
	$('#menu dl dt').each(function(j){
		if ($(this).attr("class") != 'current' && $(this).attr("class") != 'current highlight') {
			$("#d"+$(this).attr("id")).hide();
		}
	 });
}

// + --------------------------------------------------------------------------------------
// + iniRoundCorners
// + --------------------------------------------------------------------------------------
function iniRoundCorners() {
	$('.rounded').each(function(){
		$(this).corner("6px");
	});
}