// JavaScript Document
//-- edited 12/10/2010
//-- last modified 8/7/2011 -- removed urchin analytics google code
/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 */
/*
 * jQuery 1.2.6 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-05-24 14:22:17 -0400 (Sat, 24 May 2008) $
 * $Rev: 5685 $
 */
$(document).ready(function(){$('#tabs li').hover(function(){$('ul',this).slideDown(100)},function(){$('ul',this).slideUp(100)})});$(function(){$(‘.dropdown’).each(function(){$(this).parent().eq(0).hoverIntent({timeout:100,over:function(){var current=$(‘.dropdown:eq(0)’,this);current.slideDown(100)},out:function(){var current=$(‘.dropdown:eq(0)’,this);current.fadeOut(200)}})});$(‘.dropdown a’).hover(function(){$(this).stop(true).animate({paddingLeft:’35px’},{speed:100,easing:‘easeOutBack’})},function(){$(this).stop(true).animate({paddingLeft:’0'},{speed:100,easing:‘easeOutBounce’})});

