/*
-------------------------------

Navigation: Gallery, About, contact, mailto, and View more buttons

-------------------------------
*/

$(document).ready(function(){
	
	$("#galleryb").hover(function(){
		$(this).fadeTo('fast', 0.1)
		}
		,function(){
			$(this).fadeTo('slow', 1)
    			}
		);


	$("#contactb").hover(function(){
		$(this).fadeTo('fast', 0.1)
		}
		,function(){
			$(this).fadeTo('slow', 1)
    			}
		);

		
	$("#aboutb").hover(function(){
		$(this).fadeTo('fast', 0.1)
		}
		,function(){
			$(this).fadeTo('slow', 1)
    			}
		);

	$("#olderb").hover(function(){
		$(this).fadeTo('fast', 0.1)
		}
		,function(){
			$(this).fadeTo('slow', 1)
    			}
		);

	$("#email").hover(function(){
		$(this).fadeTo('fast', 0.1)
		}
		,function(){
			$(this).fadeTo('slow', 1)
    			}
		);
});

	
