$(document).ready(function(){
	
	$('#imageheader').fadeIn(3000);
	
var navDuration = 150; //time in miliseconds
      var navJumpHeight = "1.3em";

      $('#nav li').hover(function() {
          $(this).animate({ top : "-="+navJumpHeight }, navDuration);  
		            
      }, function() {
          $(this).animate({ top : "15px" }, navDuration);
      });
	  
var loc = window.location.toString().split("/")
    loc = loc[loc.length - 1]
    $("#nav li a[href=\""+loc+"\"]").addClass("selected");

// News Rotations

$('#news').cycle({ 
    fx:     'fade', 
    speed:  '1000', 
    next:   '#next2', 
    prev:   '#prev2' 
});

// Scroll TOP

$('a[href=#TOP]').click(function(){
$('html, body').animate({scrollTop:0}, 'slow');
return false;
});
	
	
});
 
