(function($){ 

	$(document).ready(function(){





		$( 'img' ).css( { 'opacity' : 0 } ).each( function (i) {
		
			var $li = $( this )
			
			setTimeout(
				function ()
				{
		
					$li.animate({ opacity : 1 }, { duration : 750 })
					
				}, 200 * ( i + 1 )
			)
		
		})
		
		$( 'address a' ).css({ 'padding-left' : 0 }).hover( 
			function(){ $( this ).stop().animate({ 'padding-left' : 5 }, { duration : 100 }) },
			function(){ $( this ).stop().animate({ 'padding-left' : 0 }, { duration : 300 }) }
		)

		$('img').tipsy({gravity: 'sw', fade: true, title: 'alt', opacity: 1});
		$('a, abbr').tipsy({gravity: 'sw', fade: true, title: 'title', opacity: 1});
		
		$( 'a[href^="http://"]' ).not( "a[href^='http://www.gbo-projects.eu'], a[href^='http://gbo-projects.eu']" ).attr( 'target', '_blank' )


	})

})(jQuery);
