﻿$(document).ready(function() {
	//Function to have the navBar linkboxes behave in a rollover fashion similar to a:hover
	$('#navBar .linkBox a').hover(function() {
		$(this).parent().addClass('hover');
	}, function () {
		$(this).parent().removeClass('hover');
	});
	
	$('#featured ul').innerfade({ speed: 1000, timeout: 3000, type: 'sequence' });
	$('#thumbGallery ul').innerfade({ speed: 1000, timeout: 3000, type: 'sequence' });
});
