	$(document).ready(function(){
		
		//galleryButtons
		$(".galleryButtons//a").css({opacity: ".6"});
		$(".galleryButtons//a").hover(function(){
			$(this).css({opacity: ".9"});
		},function(){
			$(this).css({opacity: ".6"});
		});
		
		//galleryModule
		$(".galleryModule//a").css({opacity: ".5"});
		$(".galleryModule//a").hover(function(){
			$(this).css({opacity: "1"});
		},function(){
			$(this).css({opacity: ".5"});
		});
		
		// transparent buttons
		 $(".transparentHover").hover(function(){
		   $(this).css({opacity: ".7"});
		 },function(){
		   $(this).css({opacity: "1"});
		 });
		
	});