
// fading rollovers for home icon navigation - jquery
$(function() {
		// set opacity to nill on page load
		$("a.iconbox span").css("opacity","0");
		// on mouse over
		$("a.iconbox span").hover(function () {
			// animate opacity to full
			
			//$(this)[0]['style']['opacity'] = 0;	
						
			$(this).animate({
				opacity: 4
			}, 'slow');
			//alert('full');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).animate({
				opacity: 0.3
			}, 'slow');
		});
	});


