$(document).ready(function(){
     		
     		// call the cookie class and set a cookie called viewState
			$.cookie('viewState');
			
			// create a variable and set it to the value of the cookie
			var theState = $.cookie('viewState');
     		
     		     		
     		if (window.location.href=='http://localhost:8888/michaelraba/index.html' || window.location.href=='http://www.michaelraba.com/index.html' || window.location.href=='http://www.michaelraba.com/temp216/index.html'){
     			$('#footer #handpicked').show();
     			$('#footer #list-complete').hide();
     			$('#footer #toggle').prepend('<a href="#footer" id="list-toggle">Show extended list</a>');
     			theState='selection';
     			$.cookie("viewState", "selection");
     		}
     		
     		else if (theState=='complete'){
     			$('#footer #handpicked').hide();
     			$('#footer #list-complete').show();
     			$('#footer #toggle').prepend('<a href="#footer" id="list-toggle">Show handpicked selection</a>');
     			theState='complete';
     			$.cookie("viewState", "complete");
     		}

     		
     		else {
     			$('#footer #handpicked').show();
     			$('#footer #list-complete').hide();
     			$('#footer #toggle').prepend('<a href="#footer" id="list-toggle">Show extended list</a>');
     			theState='selection';
     			$.cookie("viewState", "selection");
     		};

   		
   			$('#list-toggle').click(function(event){ 
   				if (theState=='complete'){     			
       				$('#list-complete').animate({opacity: 'toggle'}, 100, function() {
    					$('#handpicked').animate({opacity: 'toggle'}, 700, function() {$('#list-toggle').text('Show extended list');});
    					theState='selection';
    					$.cookie("viewState", "selection");
    				});
   				}
  				
  				else{     			
       				$('#handpicked').animate({opacity: 'toggle'}, 100, function() {
    					$('#list-complete').animate({opacity: 'toggle'}, 700, function() {$('#list-toggle').text('Show handpicked selection');});
    					theState='complete';
    					$.cookie("viewState", "complete");
  					});
    			
  				};
	
      	 		// Stop the link click from doing its normal thing
       			event.preventDefault();
       		});
       		

});
     	
     	
