jQuery(document).ready(function($){
    $(".fade-block").fadeTo("fast", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads
    $(".fade-block").hover(function(){
        $(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
    },function(){
    $(this).fadeTo("fast", 0.6); // This should set the opacity back to 60% on mouseout
    });
	
    $(".top-article-1 .go").hover(function(){
        $(".top-article-1 .fade-block").fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
    },function(){
    $(".top-article-1 .fade-block").fadeTo("fast", 0.6); // This should set the opacity back to 60% on mouseout
    });
	
    $(".top-article-2 .go").hover(function(){
        $(".top-article-2 .fade-block").fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
    },function(){
    $(".top-article-2 .fade-block").fadeTo("fast", 0.6); // This should set the opacity back to 60% on mouseout
    });
	
    $(".top-article-3 .go").hover(function(){
        $(".top-article-3 .fade-block").fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
    },function(){
    $(".top-article-3 .fade-block").fadeTo("fast", 0.6); // This should set the opacity back to 60% on mouseout
    });
	
});


jQuery(document).ready(function($) {
	// find the div.fade elements and hook the hover event
	$('.fadeThis').hover(function() {
		// on hovering over find the element we want to fade *up*
		var fade = $('> .hover', this);
 
		// if the element is currently being animated (to fadeOut)...
		if (fade.is(':animated')) {
			// ...stop the current animation, and fade it to 1 from current position
			fade.stop().fadeTo("fast", 1);
		} else {
			fade.fadeIn("fast");
		}
	}, function () {
		var fade = $('> .hover', this);
		if (fade.is(':animated')) {
			fade.stop().fadeTo("fast", 0);
		} else {
			fade.fadeOut("fast");
		}
	});
 
	// get rid of the text
	/* $('.fadeThis > .hover').empty(); */
})

/*


$(document).ready(function($){
$("#fade-block").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
 
});
*/
