
var $j = jQuery;
$j(document).ready(function() { 
	$j('.kwicks').kwicks({ 
		max : 400, 
		spacing : 0, 
		duration: 250
	}); 
	
	$j("#navbar ul li a").css({borderBottom:'0px solid #333333'});
	
	var config = {    
     sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
     interval: 25, // number = milliseconds for onMouseOver polling interval    
     over: function () {
		$j(this).stop().animate({ borderBottomWidth:"5px", borderBottomColour:"#333333", color:"#333333"}, 450);
	  }, // function = onMouseOver callback (REQUIRED)    
     timeout: 0, // number = milliseconds delay before onMouseOut    
     out:function () {
		$j(this).stop().animate({ borderBottomWidth:"0px", borderBottomColour:"#BBBBBB", color:"#BBBBBB"}, 500);
	  } // function = onMouseOut callback (REQUIRED)    
};

	
	$j("#navbar ul li a").hoverIntent(config);

});

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-16889999-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

