// JavaScript Document
$(function(){
	$('.homeFeature a img').css('opacity',.7);
	$('.homeFeature a img').hover(function(){
		$(this).stop().animate({
		opacity: 1
		}, 400);			
	},
	function(){
		// animate opacity to nill
		$(this).stop().animate({
			opacity: .7
		}, 800);
	});

	$('.homeFeature').hover(function(){
		$(this).children('h3').addClass('over');
	},
	function(){ 
		$(this).children('h3').removeClass('over');	
	});
});
