jQuery(document).ready(function($) {

	
	
	// ----------featured homepage tab slideshow -------- //
	
	$(".tabs").tabs("#featured_slideshow > div", {

		// enable "cross-fading" effect
		effect: 'fade',
		fadeOutSpeed: "slow",

		// start from the beginning after the last tab
		rotate: true

	// use the slideshow plugin. It accepts its own configuration
	}).slideshow();
	
	
	$('.featured-post > a').click(function(){	
		$(this).parent().addClass('current');	
	});
	
	
	// tabs for production page
	
	$(".production-tabs").tabs("div.production-panes > div", {
		effect: 'fade'
	}).history(); 
	
	//-------------- NyroModal----------------//
	
	
	  /*	 
	  $.fn.nyroModal.settings.processHandler = function(settings) {
	    var from = settings.from;
	    if (from && from.href && from.href.indexOf('http://www.youtube.com/watch?v=') == 0) {
	      $.nyroModalSettings({
	        type: 'swf',
	        height: 355,
	        width: 425,
	        url: from.href.replace(new RegExp("watch\\?v=", "i"), 'v/')
	      });
	    }
	  };
	  */
	  
	
			
});
