$(function(){
  // move this out of ~/elements/login-modal because it is included conditionally.
  // underline the page we're on in the nave
  $('#new_nav a').each(function(i, item){
	if(window.location.pathname == $(item).attr('href') 
	   ||
	   // special case for /register
	   (window.location.pathname == '/register' && $(item).attr('href') == '/myaccount'))
	  $(item).css('text-decoration','underline');
  });

  $('#slideshow').cycle({
    timeout: 3000,
    pause: true,
	next: '#slideshow-next',
	prev: '#slideshow-previous'
  });

});

