jQuery(document).ready(function($) {
	ThumbnailScroller("tsh_container","horizontal",0,800,"easeOutCirc",1,300);

	$("#tsh_container a, .tsh_largeimages img, .tsh_largeimages a").click(function() {
		$(".tsh_largeimages").hide();
		$("#tsh_largedetails_" + $(this).attr('rel')).show();
		return false;
	});

	$("#tsh_largedetails_1").show();

	$("#followme").hover(function() {
		$('#followmeitems').show();
	}, function() {
		$('#followmeitems').hide();
	});
});

