$(function() {
	
	$('a[href=#top]').click(function() {
		$.scrollTo('#top', {duration: 400});
		return false;
	});
		
	var mouseover = function() {
		$(this).find('.info').fadeIn(200);
	};
	
	var mouseout = function() {
		$(this).find('.info').fadeOut(200);	
	};
	
	$('.projects a').hover(mouseover, mouseout);

	/*

	$('.projects img').each(function() {

		var $this = $(this);

		$('<img>').attr('src', $this.attr('src')).load(function() {
			$this.fadeIn(300);
		});
		
	});
	
	*/

	$('a').not('[href*=deutscheundjapaner.com]').attr('target', '_blank');
	
});

