$(function() {

// OPACITY OF BUTTON SET TO 100%
$(".callout").css("opacity","1");

// ON MOUSE OVER
$(".first").hover(function () {
// SET OPACITY TO 10%
	$(".first img").stop().animate({
		opacity: .1
	}, "fast");
},

// ON MOUSE OUT
function () {
// SET OPACITY BACK TO 100%
	$(".callout img").stop().animate({
		opacity: 1
	}, "fast");
	});
});

$(function() {

// OPACITY OF BUTTON SET TO 100%
$(".callout").css("opacity","1");

// ON MOUSE OVER
$(".second").hover(function () {
// SET OPACITY TO 10%
	$(".second img").stop().animate({
		opacity: .1
	}, "fast");
},

// ON MOUSE OUT
function () {
// SET OPACITY BACK TO 100%
	$(".callout img").stop().animate({
		opacity: 1
	}, "fast");
	});
});

$(function() {

// OPACITY OF BUTTON SET TO 100%
$(".callout").css("opacity","1");

// ON MOUSE OVER
$(".third").hover(function () {
// SET OPACITY TO 10%
	$(".third img").stop().animate({
		opacity: .1
	}, "fast");
},

// ON MOUSE OUT
function () {
// SET OPACITY BACK TO 100%
	$(".callout img").stop().animate({
		opacity: 1
	}, "fast");
	});
});

$(function() {

// OPACITY OF BUTTON SET TO 100%
$(".callout").css("opacity","1");

// ON MOUSE OVER
$(".fourth").hover(function () {
// SET OPACITY TO 10%
	$(".fourth img").stop().animate({
		opacity: .1
	}, "fast");
},

// ON MOUSE OUT
function () {
// SET OPACITY BACK TO 100%
	$(".callout img").stop().animate({
		opacity: 1
	}, "fast");
	});
});





