$(document).ready(function()
    {
        var error = $('#error').html();
        if(error != '') {
            $('#error').show('slow');
        }

        $("a.picture_view").fancybox({
            'transitionIn'	:	'elastic',
            'transitionOut'	:	'elastic',
            'speedIn'		:	600,
            'speedOut'		:	200,
            'overlayShow'	:	false,
            'titlePosition' :   'outside'
        });

        $('.slideshow').cycle({
		fx: 'fade',
                speed: 6000,
                random: 1,
                pause: 1
	});

        $('.showcase').cycle({
		fx: 'fade',
                speed: 12000,
                random: 1
	});

    });


