// control highlight and font size in text selector
$(document).ready(
function() 
{
	$('a[rel*=external]').click(function() {
		window.open(this.href);
		return false;
	});
		
	$("p.creditbox").slideToggle('fast');
	
	$(window).bind("load", function() { $("div.svw").slideView({easeFunc: "easeOutExpo", easeTime: 1200}); }); 
	
	
	$('#slideshow').cycle({ 
	    prev:   '#next', 
	    next:   '#prev', 
	    timeout: 0,
		before: onBefore
	});
	
	$('#credits').click(function() {
		$("p.creditbox").slideToggle('fast');
		return false;
	});
	
	// hide previous and next if no slideshow.
	
	if ($('#slideshow').length == 0)
	{
		//alert('no slideshow');
		$('#imagenav').css('display', 'none');
	}
	
	function onBefore()
	{
		$('#caption').html(this.alt);
	}
});
