jQuery(document).ready(function($)
{
	//$("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',theme:'light_square',slideshow:2000});

	$("a[rel^='pretty']").prettyPhoto(
	{
		overlay_gallery: false
		//theme: 'light_rounded'
	});

	$('ul#thumbgallery li a').hover(function()
	{
		$(this).find('span').fadeIn('fast');
	}, 
	function()
	{
		$(this).find('span').fadeOut('fast');
	});

})
