$(document).ready(function () {

	$(".images").hide();
	$(".images").fadeIn("slow");
	
	$(".menuItems").hide();
	$(".menuItems").fadeIn("slow");
	
	$(".links").hide();
	$(".links").fadeIn("slow");
	
	$(".contact").hide();
	$(".contact").fadeIn("slow");
	
	$(".about").hide();
	$(".about").fadeIn("slow");
	
	$('.title>a>img').mouseover(function(){
		$(this).attr('src', 'images/interface/titleover.png');
	}).mouseout(function(){
		$(this).attr('src', 'images/interface/title.png');
  });
	
});
