/* global actions */
$(function(){
$('a.active').click(function(e){e.preventDefault();});
});

/* global variables */

animSpeed = 800;

var animFX = 'easeInOutCubic';


$('.header1 ul.navi li a:not(.active)').mousedown(function(){$(this).stop().animate({'backgroundColor':'#0cbef8'}, animSpeed / 2)}).hover(function(){$(this).stop().animate({'backgroundColor':'#464646'}, animSpeed)}, function(){$(this).stop().animate({'backgroundColor':'#1F407A'}, animSpeed)});


//$('.header1 ul.navi li a:not(.active)').mousedown(function(){$(this).stop().animate({'backgroundColor':'#0cbef8'}, animSpeed / 2)}).hover(function(){$(this).stop().animate({'backgroundColor':'#464646'}, animSpeed)}, function(){$(this).stop().animate({'backgroundColor':'#1F407A'}, animSpeed)});
