/* big jquery stuff */



$(document).ready( function() {

	$('.loadimg').each(function() {
		var x = $(this).closest('div').width() / 2 - 17;
		$(this).css('left', x);
		var y = $(this).closest('div').height() / 2 - 17;
		$(this).css('top', y);
		});

	$('#slide').crossSlide({
	  fade: 1
	}, [
	  {
		 src:  'img/splash.1.jpg',
		 from: '100% 80% 1x',
		 to:   '100% 0% 1.2x',
		 time: 3
	  }, {
		 src:  'img/splash.2.jpg',
		 from: 'top left',
		 to:   'bottom right 1.3x',
		 time: 2
	  }, {
		 src:  'img/splash.3.jpg',
		 from: '100% 80% 1.3x',
		 to:   '80% 0% 1.1x',
		 time: 2
	  }
	]);

});


