$(document).ready(function() {
			
			/* Main */
			/*$("#main").fadeTo(1000, 1);*/
			
			/* RSS */
			$("rss").hover(function(){
				$(this).slideDown(400);
			},
			function(){
				$(this).slideUp(400);
			});
			
			/* Album */
			$("table#album tr td img").hover(function(){
				$(this).fadeTo(400, 0);
			},
			function(){
				$(this).fadeTo(400, 1);
			});
			$("table#album tr td.emptycell").hover(function(){
				$(this).fadeTo(400, 0);
			},
			function(){
				$(this).fadeTo(400, 1);
			});
			$("table#album tr td img").mouseup(function(){
				$(this).fadeTo(400, 1);
			});
			
			/* Links */
			$("table#links tr td.emptycell").hover(function(){
				$(this).fadeTo(400, 0);
			},
			function(){
				$(this).fadeTo(400, 1);
			});
			
			$("table#links tr td.infocell").hover(function(){
				$(this).fadeTo(400, 0);
			},
			function(){
				$(this).fadeTo(400, 1);
			});
			$("table#links tr td a").hover(function(){
				$("table#links tr td.infocell").hide();
			},
			function(){
				$("table#links tr td.infocell").show();
			});
			
			$("table#links tr td.infocell_img").hover(function(){
				$(this).fadeTo(400, 0);
			},
			function(){
				$(this).fadeTo(400, 1);
			});
			$("table#links tr td a").hover(function(){
				$("table#links tr td.infocell_img").hide();
			},
			function(){
				$("table#links tr td.infocell_img").show();
			});
		});
