jQuery(document).ready(function() {
	// Set links from carousel images to PDF sell sheets to open in new window.
	$("#photoList a[@rel='application-pdf']").attr("target","_blank");
	$("#photoList a[@rel='application-pdf']").attr("title","See details about this piece. PDF: Opens in new window.");

	// Start photo carousel animation
	jQuery('#photoList').jcarousel({
		buttonNextHTML: '<a href="#"></a>',
		buttonPrevHTML: '<a href="#"></a>',
		scroll: 2,
		animation: 1250
	});
});
