$(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').cycle({
    	fx: 'fade',
    	pause: 1, 
		timeout:  5000
    });
    
    $('div.items div a.lightbox').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,
		clickable: false
	}).mousewheel();
});