/*
 *	jQuery Innerfade
 *  This plugin is used on the homepage.
*/
$(function(){
	$('#slider').innerfade({
			animationtype: 'fade', 
			speed: '3000',
			timeout: 7000,
			type: 'sequence',
			containerheight: 'auto'
	});
	$('#slider2').innerfade({
			animationtype: 'fade', 
			speed: '3000',
			timeout: 10000,
			type: 'sequence',
			containerheight: 'auto'
	});
	$('.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();	
	
});


