$(document).ready(function(){
//$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".shopthumbs").css("opacity","0.8");
$(".thumbs").css("opacity","0.8");
$(".thumbscustomers").css("opacity","0.8");
$(".thumbscustomers2").css("opacity","0.8");

// ON MOUSE OVER
$(".shopthumbs, .thumbs, .thumbscustomers, .thumbscustomers2").hover(function () {
										  
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "slow");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 80%
$(this).stop().animate({
opacity: 0.8
}, "slow");
});
});


$(function() {
// OPACITY OF BUTTON SET TO 80%
$("#text p").css("opacity","0.8");
		
// ON MOUSE OVER
$("#text p").hover(function () {
										  
// SET OPACITY TO 1000%
$(this).stop().animate({
opacity: 1.0
}, "slow");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.5
}, "slow");
});
});


$(function() {
// OPACITY OF BUTTON SET TO 80%
$("#div").css("opacity","0.8");
		
// ON MOUSE OVER
$("#div").hover(function () {
										  
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "slow");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 80%
$(this).stop().animate({
opacity: 0.8
}, "slow");
});
//});
});
