jQuery(function() {
	jQuery(document).ready(function(){
		jQuery('#slideshow').cjFlashySlideShow({
		   xBlocks: 6,
		   yBlocks: 3,
		   minBlockSize: 70,
		   delay: 3000,
		   direction: 'random',
		   translucent: true,
		   sloppy: true
		});
	});
});

function neonGlow() {
	jQuery("#logoglow").fadeIn(2000);
	jQuery("#logoglow").fadeOut("fast");
}

jQuery(function() {
    setInterval( "neonGlow()", 2000 );
});