/*
 * custom jQuery Code
 * Author:         PStevenson
 * Author Email:   PeterStevenson@hotmail.com
 * Author URL:     P-Stevenson.com
 * Copyright:      Copyright (C) PStevenson. All rights reserved.
 */

jQuery(document).ready(function(){
	
	$('#content a.toolLink').css({'opacity':'0.5'});
	$('#content a.toolLink').hover(
		function(){$(this).css({'opacity':'1'});},
		function(){$(this).css({'opacity':'0.5'});}
		);
	$('#content .toolBG').hide();
	$('#content .toolBG').each(function(index) {
		$(this).delay(300*index).fadeIn(600);
		});
	
	});
