		// jQuery Calls
		$(function() {
			$('.expanded-content').hide();
			$('.expand-button').click(function () {
      			$(this).next('div').slideToggle();
				///////////// If it's already open, remove the classes //////////
				if($(this).next('div.expanded-content').attr('class').split(' ').slice(-1) == "open") {
					$(this).next('div.expanded-content').removeClass('open');
					$(this).removeClass('expand-button-active'); 
				} else {
					$(this).next('div.expanded-content').addClass('open');
					$(this).addClass('expand-button-active'); 
				}
    		});
    		
			////////// Remove the class flashContentSteps, these are hidden so there is something to view if no javascript /////
			$('.flashContentSteps').removeClass('flashContentSteps');
			
    		$('.figure-content').hide();
			$('.figure-expand').click(function () { 
      			$(this).next('ul').slideToggle(); 
    		});
    		
    		$('.help-content').hide();
    		$('.help-content:first').show();
			$('.expand-help').click(function () { 
      			$(this).next('div').slideToggle().siblings('div:visible').slideUp();
    		});
    		
			$('#figures p').click(function () { 
      			$(this).next('div').slideToggle().siblings('div:visible').slideUp();
    		});
    		
    		$('#about-hyh').hide();
    		$('p.high-yields').click(function () { 
      			$('#about-hyh').slideToggle();
    		});
    		
 			$('#role-tabs').tabs({ selected: 1 });
 			$('#step-tabs').tabs();
 			$('#purchase-tabs').tabs();
 			
			$('#writers div:even').addClass('ls');
			$('#reviewers div:even').addClass('ls');
			
			// All Star Contributors Cycle Scripts - Need unique class and pager for each individual
			
			$('.rotation1')
				.before('<div class="rotation-nav rotation-nav1">')
				.cycle({ 
				    fx:     'fade', 
				    speed:  'fast', 
				    timeout: 0, 
				    pager:  '.rotation-nav1' 
				});
			
			$('.rotation2')
				.before('<div class="rotation-nav rotation-nav2">')
				.cycle({ 
				    fx:     'fade', 
				    speed:  'fast', 
				    timeout: 0, 
				    pager:  '.rotation-nav2' 
				});
			
			$('.rotation3')
				.before('<div class="rotation-nav rotation-nav3">')
				.cycle({ 
				    fx:     'fade', 
				    speed:  'fast', 
				    timeout: 0, 
				    pager:  '.rotation-nav3' 
				});
			
			$('.rotation4')
				.before('<div class="rotation-nav rotation-nav4">')
				.cycle({ 
				    fx:     'fade', 
				    speed:  'fast', 
				    timeout: 0, 
				    pager:  '.rotation-nav4' 
				});
			
			$('.rotation5')
				.before('<div class="rotation-nav rotation-nav5">')
				.cycle({ 
				    fx:     'fade', 
				    speed:  'fast', 
				    timeout: 0, 
				    pager:  '.rotation-nav5' 
				});
			
			$('.rotation6')
				.before('<div class="rotation-nav rotation-nav6">')
				.cycle({ 
				    fx:     'fade', 
				    speed:  'fast', 
				    timeout: 0, 
				    pager:  '.rotation-nav6' 
				});
			
			$('.rotation7')
				.before('<div class="rotation-nav rotation-nav7">')
				.cycle({ 
				    fx:     'fade', 
				    speed:  'fast', 
				    timeout: 0, 
				    pager:  '.rotation-nav7' 
				});
			
			$('.rotation8')
				.before('<div class="rotation-nav rotation-nav8">')
				.cycle({ 
				    fx:     'fade', 
				    speed:  'fast', 
				    timeout: 0, 
				    pager:  '.rotation-nav8' 
				});
			
			$('.rotation9')
				.before('<div class="rotation-nav rotation-nav9">')
				.cycle({ 
				    fx:     'fade', 
				    speed:  'fast', 
				    timeout: 0, 
				    pager:  '.rotation-nav9' 
				});
		});
		
		
		// Help Window Pop Up Script
		function open_help(page) {
		    window_handle1 = window.open(page,'popuphelp','width=725,height=400,scrollbars=yes,resizable=yes,screenX=200,screenY=350');
		    window_handle1.focus();
		    return false;
		}
		
		
		// Cufon Replacers
		Cufon.replace('#mainnav', { fontFamily: 'Myriad Pro', textShadow: '#333 1px 1px' });
		
		
		// Shadowbox Initializer
		Shadowbox.init();
		

