/**
 * 	text-decoration: underline;

 * @author lukasz
 */
$(document).ready(function()
{
	var path = window.location.pathname.split("/").splice(1, 2);
	
	if (path[0]!='') 
	{
		$(".LeftMenuMainName a[href$='" + path[0] + "']").css('text-decoration', 'underline');
		
		if (path[1]) 
		{
			$(".LeftMenuMainName a[url*='" + path[0] + "']").css('text-decoration', 'underline').parent().find("li:hidden").show();
			
			$(".LeftMenuMainName a[href$='" + path[1] + "']").css('text-decoration', 'underline	');
		}
	}
	
	$(".LeftMenuMainName ul>a").bind('click', function()
	{
		$('.LeftMenuMainName li:visible').slideUp("slow");
		
		$(this).parent().find("li:hidden").slideDown("slow");
		
		//return false;
	});
	
});
