// JavaScript Document$(document).ready(function(){	//Toogle Information section	$("#header a").click(function(){		$("#information").slideToggle({			duration: "slow",			easing: "easeinout"		});		$("#header a").toggleClass("active");			return false;	});	$('#news').tabs({ fxSlide: true, fxFade: true, fxSpeed: 'fast' });	$('#people').tabs(Math.floor(Math.random()*$("#people li").length+1), { fxSlide: true, fxFade: true, fxSpeed: 'fast' });	//Settings for Projects	$(".projectlist").jCarouselLite({		btnNext: ".next",		btnPrev: ".prev",		visible: 3,		speed: "slow",		easing: "easeinout",		circular: true	});	$("//a[@rel='external']").attr("target","_blank");});