/*	=========================
	
	scripts.js
	
	Put scripts here.
	
	Last edited: 10/14/09 by Dan
	
	========================= */

$(document).ready(function(){

	jQuery(function(){
		jQuery('ul.sf-menu').superfish( {
		
			animation: { opacity:'show', height:'show' }, 
			speed: 'fast'
		
		});
	});
	
	$("#primetime").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
	
	$('#testimonial-content').after('<ul id="testimonial-controls" class="clearfix"><li id="testimonial-prev"><a href="javascript:void(0);">&laquo;</a></li><li id="testimonial-next"><a href="javascript:void(0);">&raquo;</a></li></ul>').cycle({
		fx: 'fade',
		speed: 'fast',
		timeout: 15000,
		next: '#testimonial-next',
		prev: '#testimonial-prev'
	});

});