// JavaScript Document
// call jQuery commands for hover-over effect

$(document).ready(function(){
	$(".featured-thumb").fadeTo("fast", 0.6); //make images initally faded
	$(".featured-thumb").hover(
		function() {
			$(this).fadeTo("fast", 1.0);  //fade to 100% on mouseover
		},
		function() {
			$(this).fadeTo("fast", 0.6);  //fade to 60% on mouseout
		}	
	);
});
