$(function() {
	// OPACITY OF BUTTON
	$(".art-title").css("opacity","0.0");
	
	//ON MOUSE OVER
	$(".art-title").hover(function () {
	
	//SET OPACITY TO 100%
	$(this).stop().animate({
	opacity: 1.0
	}, "slow");
	},
	
	//ON MOUSE OUT
	function () {
	
	//SET OPACTIY BACK TO 50%
	$(this).stop().animate({
	opacity: 0.0
	}, "slow");
	});
	});
	
$(function() {
	// OPACITY OF BUTTON
	$(".button").css("opacity","0.5");
	
	//ON MOUSE OVER
	$(".button").hover(function () {
	
	//SET OPACITY TO 100%
	$(this).stop().animate({
	opacity: 1.0
	}, "fast");
	},
	
	//ON MOUSE OUT
	function () {
	
	//SET OPACTIY BACK TO 50%
	$(this).stop().animate({
	opacity: 0.5
	}, "fast");
	});
	});
		
$(function() {
	// OPACITY OF BUTTON
	$(".socialnetwork").css("opacity","0.5");
	
	//ON MOUSE OVER
	$(".socialnetwork").hover(function () {
	
	//SET OPACITY TO 100%
	$(this).stop().animate({
	opacity: 1.0
	}, "fast");
	},
	
	//ON MOUSE OUT
	function () {
	
	//SET OPACTIY BACK TO 50%
	$(this).stop().animate({
	opacity: 0.5
	}, "fast");
	});
	});
	
	$(function() {
		// OPACITY OF BUTTON
		$("#sidebar li").css("opacity","0.5");
		
		//ON MOUSE OVER
		$("#sidebar li").hover(function () {
		
		//SET OPACITY TO 100%
		$(this).stop().animate({
		opacity: 1.0
		}, "fast");
		},
		
		//ON MOUSE OUT
		function () {
		
		//SET OPACTIY BACK TO 50%
		$(this).stop().animate({
		opacity: 0.5
		}, "fast");
		});
		});
