$(document).ready(function(){

	// Open external links in new tab
	$("a.external").attr({ target: "_blank" });
	
	// Remove outlines from clicked links
	$("a").click(function() {
		$(this).blur();
	});
	

	$('#cross-slide').crossSlide({
		fade: 1
		}, [
			{
			src:  'images/pan-1.jpg',
			//href: 'http://flickr.com/photos/spacetrucker/94209642/',
			from: '100% 80% 1x',
			to:   '100% 30% 1.2x',
			time: 5
			}, {
			src:  'images/pan-2.jpg',
			//href: 'http://flickr.com/photos/hichako/1125341449/',
			from: '0% 70%',
			to:   '100% 100% 1.2x',
			time: 5
			}, {
			src:  'images/pan-6.jpg',
			//href: 'http://flickr.com/photos/jayniebell/1125216143/',
			from: '100% 100% 1x',
			to:   '0% 70% 1.2x',
			time: 5
			}, {
			src:  'images/pan-7.jpg',
			//href: 'http://flickr.com/photos/jayniebell/1125216143/',
			from: '100% 100% 1x',
			to:   '80% 30% 1.2x',
			time: 5
			}, {
			src:  'images/pan-5.jpg',
			//href: 'http://flickr.com/photos/jayniebell/1125216143/',
			from: '100% 100% 1x',
			to:   '0% 70% 1.2x',
			time: 5
			}
		]
	);
	
});