$(document).ready(function() {

	$('#header-cycle').cycle({
		fx:			'fade',
		speed:		1000, 
		timeout:	8000,
		random:		1
	});
	

		
	// Form Styling
	function styleCheckRadio() {
		if ($('.style-checkbox input').length) {
			$('.style-checkbox').each(function(){ 
				$(this).removeClass('style-checkbox-on');
			});
			$('.style-checkbox input:checked').each(function(){ 
		    	$(this).parent().addClass('style-checkbox-on');
			});                
		}
		if ($('.style-radio input').length) {
			$('.style-radio').each( function() { 
				$(this).removeClass('style-radio-on');
			});
			$('.style-radio input:checked').each( function() { 
				$(this).parent().addClass('style-radio-on');
			});
		}
	}
	
	$(window).load(styleCheckRadio);
	$(".style-checkbox, .style-radio").click(styleCheckRadio);


	// Teacher key edit/create popup
	$(".teacherkeys-info-bubble").removeClass("teacherkeys-info-bubble-no-js");
	$(".teacherkeys-info-bubble").hover(function() {
		$("p.teacherkeys-info-text").fadeIn(200);
	}, function() {
		$("p.teacherkeys-info-text").fadeOut(200);
	});
	
	
});

