$(function(){

// show path
	$("#addMedia .nav li").click(function(){
		var curItme = $("#addMedia .item:visible"),
			root = $("#myPath .root"),
			sub = $("#myPath .sub"),
			text = $(this).text(),
			from = text.indexOf(" ");
			text = text.substr(from+1);
			
			root.text(text);
			
			sub.text(curItme.find(".subNav .current").text());
	});
	
	$("#addMedia .item .subNav li").click(function(){
		$("#myPath .sub").text($(this).text());										   
	})
	
	$("#addMedia_c .nav li").click(function(){
		var curItme = $("#addMedia_c .item:visible"),
			root = $("#myPath_c .root"),
			sub = $("#myPath_c .sub"),
			text = $(this).text(),
			from = text.indexOf(" ");
			text = text.substr(from+1);
			
			root.text(text);
			
			sub.text(curItme.find(".subNav .current").text());
	});
	
	$("#addMedia_c .item .subNav li").click(function(){
		$("#myPath_c .sub").text($(this).text());										   
	})
});