    curId = 0;
    isExpanded = true;
    
    function switchClass(id) {
    	$('#spotlightNav' + id).removeClass("homeSpotlightLeft").addClass("homeSpotlightLeftOver");
    }
    
    function switchClassBack(id) {
    	$('#spotlightNav' + id).removeClass("homeSpotlightLeftOver").addClass("homeSpotlightLeft");
    }    
    
    function switchToolkit(id) {
        
        if ($('#toolkitLink-' + id).html() == '-') {
          $('#toolkitLink-' + id).html( '+' );

          $('#toolkitOverlay-' + id).animate( { top:"62px" }, { queue:false, duration:500, easing: 'easeOutQuad' });

      //    $('#jq_hide_link').css( { color:"#ccff33" } );
        } else {
          $('#toolkitLink-' + id).html( '-' );

          $('#toolkitOverlay-' + id).animate( { top:"0px" }, { queue:false, duration:500, easing: 'easeOutQuad' });

      //    $('#jq_hide_link').css( { color:"#333333" } );
        }
      }    
    
    function hideShow() {
      isExpanded = !isExpanded;
      if (isExpanded) {
        $('#jq_hide_link').html( 'more +' );

        $('#jq_overlay').animate( { top:"340px" }, { queue:false, duration:500, easing: 'easeOutQuad' });

    //    $('#jq_hide_link').css( { color:"#ccff33" } );
      } else {
        $('#jq_hide_link').html( 'less -' );

        $('#jq_overlay').animate( { top:"170px" }, { queue:false, duration:500, easing: 'easeOutQuad' });

    //    $('#jq_hide_link').css( { color:"#333333" } );
      }
    }
    
    function changeJqData( bgImgURL, headerTitle, text, linkHref ) {
    
      $('#jq_overlay').css( { top:"350px" } );
      $('#jq_box_bg_tmp').attr('src', bgImgURL ).hide().fadeIn('slow', function() {
          $('#jq_box_bg').attr('src', bgImgURL );
          
          $('#jq_header').html(headerTitle );
          $('#jq_text').html( text );
          
          $('#jq_link').html('');
          if (linkHref != '')
        	  $('#jq_link').html(linkHref);

          
          if (!isExpanded) {
            $('#jq_overlay').animate( { top:"170px" }, { queue:false, duration:500, easing: 'easeOutQuad' });
          } else {
            $('#jq_overlay').animate( { top:"340px" }, { queue:false, duration:500, easing: 'easeOutQuad' });
          }
        } );
    }
