$(function(){
	//hover buttons
	$("#Home" ).hover( 
		function()
		{
			$(this).addClass( "darkableImage" );
		}, 
		function()
		{
			$(this).removeClass( "darkableImage" );
		}
	);
	
	//hover buttons
	$("#Monument" ).hover( 
		function()
		{
			$(this).addClass( "darkableImage" );
		}, 
		function()
		{
			$(this).removeClass( "darkableImage" );
		}
	);	
	
	//hover buttons
	$("#Employees" ).hover( 
		function()
		{
			$(this).addClass( "darkableImage" );
		}, 
		function()
		{
			$(this).removeClass( "darkableImage" );
		}
	);
	//hover buttons
	$("#history" ).hover( 
		function()
		{
			$(this).addClass( "darkableImage" );
		}, 
		function()
		{
			$(this).removeClass( "darkableImage" );
		}
	);
	//hover buttons
	$("#contact" ).hover( 
		function()
		{
			$(this).addClass( "darkableImage" );
		}, 
		function()
		{
			$(this).removeClass( "darkableImage" );
		}
	);
});