$(document).ready(function() {
	$("p.success span").click(function() {  // Whenever someone clicks the litte X on the notice message do the following
		$('p.success').slideUp('slow');  // Fade out the whole paragraph
		$('p.success span').hide('fast');  // And hide the X 
	});
	$("p.error span").click(function() {  // Whenever someone clicks the litte X on the notice message do the following
		$('p.error').slideUp('slow');  // Fade out the whole paragraph
		$('p.error span').hide('fast');  // And hide the X 
	});
    
    $('#gallery a').lightBox({
		imageLoading: '/images/lightbox-ico-loading.gif',
		imageBtnClose: '/images/lightbox-btn-close.gif',
		imageBtnPrev: '/images/lightbox-btn-prev.gif',
		imageBtnNext: '/images/lightbox-btn-next.gif'
    });
    /*
	$("div.scrollable").scrollable({
		vertical:true, 
		size: 5
	});
	*/
	$('#slideshow').cycle({
		fx: 'fade',
		timeout:  9000,
        prev:    '#prev',
        next:    '#next'
	});
	
	$('body').supersleight({
		shim: '/images/transparent.gif'
	});
});