$(document).ready(function()
{
	/* Application Showcase */
	$('#slider').cycle({
			speed: '3000',
			timeout: 7000,
			pause: 1
	});

	$('#slider2').cycle({
			speed: '3000',
			timeout: 5000,
			pause: 1
	});

	$('.boxgrid.captionfull').hover(function(){ //On hover...
		$(".cover", this).fadeIn("fast");
	}, 
	function() { //On hover out...
		$(".cover", this).fadeOut("fast");
	});

	$("#table-a tr:odd").addClass("alt");

	$('.boxgrid a').lightBox();

	$("label").inFieldLabels();
	
	$('a.external').click(function()
	{
		pageTracker._trackPageview($(this).attr('rel'));
	});
});