jQuery(function() {
  (function navigation() {
    $('#alternative_nav > ul > li').mouseover(function(){
			var hovered = $(this).attr('id');			
			$('#nav > ul > li > ul').each(function(){
				if($(this).parent().attr('id') != hovered){
					$(this).hide();
				}
				else{
					$(this).show();
				}
			})			
		});
  })();
  
  (function slide() {
    $('#attached_assets').cycle({
      timeout: 3000,
      speed: 3000,
      delay: 0
    });
    
  })();
  
  (function references() {
    $('.reference > a.more').click(function(e) {
      $('.stories').hide();
      $(this).siblings('.stories').show();
      e.preventDefault();
    });
    
    $('.reference .stories .close').click(function(e) {
      $(this).closest('.stories').hide();
      e.preventDefault();
    });
    
    $('.reference .stories').each(function() {
      var offset = -($(this).innerWidth() + 30);
      $(this).css('left', offset);
    })
  })();
});

jQuery.browser.msie6 = (jQuery.browser.msie && jQuery.browser.version === "6.0");
