function getPath () {
	return Zend().currentPath();
}
function Go (url) {
	
	if(Zend().isNav() || ($.browser.msie && $.browser.version=="6.0"))
	{
		window.open(Zend().currentPath()+'/'+url,'_self');
	}
	else
	{	
		window.open('#/'+url,'_self');
	}
	return false;
}

function slide (obj) {
	
	if($('#'+obj).css('display') == 'none')
	{
		$('#'+obj).slideDown('fast');
	}
	else
	{
		$('#'+obj).slideUp('fast');
	}
	
}
