$(function() {
  $('#featured').cycle({
		fx: 'fade',
		speed: 1500,
		timeout: 7000,
		random: true,
		pause: true
 });
  
  (function() {
	  var isLive = !/http:\/\/(localhost|server2003)/.test(window.location);	
	  var root = (isLive ? (/newsite/.test(window.location) ? '/newsite/' : '') : '/artd/').replace(/^\/|\/$/g, '').split('/');
	  var pos = !root[0].length ? 0 : root.length;
	  var path = window.location.pathname.substring(1).split('/').slice(pos);
	  var s = '', e = '';

	  if (!path[path.length - 1].length) {
		e = path[path.length - 2] == undefined ? 'index.htm' : path[path.length - 2] + '/';
	  } else {
		s = path[path.length - 1];
		e = s;
	  }

	  if (path.length > 1) {
		s = path[0] + '/';
	  } else {
		s = e;  
	  }

	  if (s.length && e.length) {
	    $('#menu a[href$="' + s + '"], #content div.sub-menu a[href$="' + e + '"]').addClass('current');
	  }
	})();
});
