// Set up Sliders
// **************
$(function(){
  
	$('#calendar-slider').anythingSlider({
	    // Slideshow options
	    animationTime       : 200,
	    delay               : 5000,
      // Navigation
      hashTags            : false,      // Should links change the hashtag in the URL?
      enableKeyboard      : false,      // if false, keyboard arrow keys will not work for the current panel.
      buildArrows         : false,      // If true, builds the forwards and backwards buttons
      buildNavigation     : false,      // If true, builds a list of anchor links to link to each panel
	});
	$('#twitter-slider').anythingSlider({
	    // Slideshow options
	    animationTime       : 200,
	    delay               : 6000,
      // Navigation
      hashTags            : false,      // Should links change the hashtag in the URL?
      enableKeyboard      : false,      // if false, keyboard arrow keys will not work for the current panel.
      buildArrows         : false,      // If true, builds the forwards and backwards buttons
      buildNavigation     : false,      // If true, builds a list of anchor links to link to each panel
	});
	$('.page .post-content').masonry({
	 singleMode: true,
	 itemSelector: '.linkbox',
  });
  
  $('#calendar-slider a').popupWindow({
    centerBrowser: 1
  });
  
  $("#featured .front").click(function() {
    $(this).trigger('mouseover');
  });
  
});
