jQuery(document).ready(function(){
	
	jQuery('#topNav a').css('opacity',0.8);
	jQuery('#topNav a').hover(function() {
		jQuery(this).stop().animate({
			opacity : 1
		}, 600);
	},function(){
		jQuery(this).stop().animate({
			opacity : 0.8
		}, 800);
	});
	
	jQuery('.newsItem, .linkItem, .textItem').css('opacity',0.6);
	jQuery('.leftImage img, #bottomLogoes img').css('opacity',0.7);
	jQuery('.leftGalleryImage img, .galleryImage img').css('opacity',0.1);
	
	jQuery('.leftGalleryImage img, .galleryImage img').hover(function() {
		jQuery(this).stop().animate({
			opacity : 1
		}, 600);
	},function(){
		jQuery(this).stop().animate({
			opacity : 0.1
		}, 800);
	});
	
	jQuery('.leftImage img, .newsItem, .linkItem, #bottomLogoes img, .textItem').hover(function() {
		jQuery(this).stop().animate({
			opacity : 1
		}, 600);
	},function(){
		jQuery(this).stop().animate({
			opacity : 0.7
		}, 800);
	});
	
	jQuery('.newsItem, .linkItem').hover(function() {
		jQuery(this).stop().animate({
			opacity : 1
		}, 600);
	},function(){
		jQuery(this).stop().animate({
			opacity : 0.6
		}, 800);
	});
	
	jQuery('#bottomContainer img').hover(function() {
		jQuery(this).stop().animate({
			opacity : 0.2
		}, 1000);
	},function(){
		jQuery(this).stop().animate({
			opacity : 1
		}, 1000);
	});
	
	jQuery('#siteName, #siteDescription').css('opacity',0);
	
	jQuery('#siteName')
		.animate( { opacity: 0}, 3000 )
		.animate( { opacity: 1}, 3000 )
		.animate( { opacity: 0.7}, 2000 )
	
	jQuery('#siteDescription')
		.animate( { opacity: 0}, 7000 )
		.animate( { opacity: 1}, 3000 )
		.animate( { opacity: 0.7}, 2000 )
});
