$().ready(function() {
	$("a.screenshot").lightBox();

	$("#coda-slider-1").codaSlider({
           autoSlide: false,
           autoSlideInterval: 15000,
           autoSlideStopWhenClicked: true
    });
	
	
	$(".vanish").bind("mouseover", function(){
		$(this).fadeOut(2500).fadeIn(5000);
	
	});
	
});