// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(document).ready(function() {
  $('.splash-content').hide().fadeIn(2000);
   
	$('a.splash-button').addGlow({ textColor: '#8CC63E', haloColor: '#8CC63E', duration: 100 });
	
	$('#blocks').galleryView({
	  filmstrip_size: 3,
	  frame_opacity: 1.0,
	  show_panels: false,
	  show_captions: true,
    frame_width: 170,
    frame_height: 135,
    nav_theme: 'dark',
    background_color: 'transparent',
    caption_text_color: 'black'
  });
  
  $('#podcast_submit').click(function() {
    $('#podcast_submit').hide();
    $('#loading').show();    
  });
  
});