// JavaScript Document
//<![CDATA[
$(document).ready(function () {
	//Append a div with hover class to all the LI
	$('#nav ul li').append('<div class="hover"><\/div>');
	$('#nav ul li').hover(
		//Mouseover, fadeIn the hidden hover class	
		function() {
			$(this).children('div').fadeIn('1000');	
			}, 
			//Mouseout, fadeOut the hover class
		function() {
				$(this).children('div').fadeOut('1000');	
		}).click (function () {
			//Add selected class if user clicked on it
		$(this).addClass('selected');
		});
		$(function() {	
	//Append a div with hover class to all the LI
	$('#sectionnav ul li').append('<div class="hover"><\/div>');
	$('#sectionnav ul li').hover(
		//Mouseover, fadeIn the hidden hover class	
		function() {
			$(this).children('div').fadeIn('1000');	
			}, 
			//Mouseout, fadeOut the hover class
		function() {
				$(this).children('div').fadeOut('1000');
		});	
		$(function() {	
	//Append a div with hover class to all the LI
	$('#tabs ul li').append('<div class="hover"><\/div>');
	$('#tabs ul li').hover(
		//Mouseover, fadeIn the hidden hover class	
		function() {
			$(this).children('div').fadeIn('1000');	
			}, 
			//Mouseout, fadeOut the hover class
		function() {
				$(this).children('div').fadeOut('1000');
						}).click (function () {
			//Add selected class if user clicked on it
		$(this).addClass('selected');
		});
			});
		});
		});
		$(function() {
		$(".newsticker").jCarouselLite({
      	auto: 4500,
      speed: 2000,
	  visible: 1
	  });
  });
//]]>
