$(document).ready(function(){
	$(".hidden_button").fadeTo("slow", 0); 
	$(".hidden_button").hover(function(){
	$(this).fadeTo("slow", 1.0); 
	},function(){
	$(this).fadeTo("slow", 0); 
	});
});

$(document).ready(function(){
	$(".avaya").fadeTo("slow", 0.2); 
	$(".avaya").hover(function(){
	$(this).fadeTo("slow", 1.0); 
	},function(){
	$(this).fadeTo("slow", 0.2); 
	});
});

$(document).ready(function(){
	$(".unionbank").fadeTo("slow", 0.2); 
	$(".unionbank").hover(function(){
	$(this).fadeTo("slow", 1.0); 
	},function(){
	$(this).fadeTo("slow", 0.2); 
	});
});

$(document).ready(function(){
	$(".rgbstudios").fadeTo("slow", 0.2); 
	$(".rgbstudios").hover(function(){
	$(this).fadeTo("slow", 1.0); 
	},function(){
	$(this).fadeTo("slow", 0.2); 
	});
});

$(document).ready(function(){
	$(".art_fade").fadeTo("slow", 1.0); 
	$(".art_fade").hover(function(){
	$(this).fadeTo("slow", 0.1); 
	},function(){
	$(this).fadeTo("slow", 1.0); 
	});
});

