			$(document).ready(function() {
      			$('#hands_tween').show();
      
      
            /* FancyBox image gallery assignment */
    				$("a.imageset").fancybox();
    				$("a.see_all").fancybox({
    		      'hideOnContentClick'	:	false,
              'frameWidth'    : 280,
              'frameHeight'   : 550
            });
    				$("a.contact_ekid").fancybox({
    		      'hideOnContentClick'	:	false,
              'frameWidth'    : 400,
              'frameHeight'   : 560
            });
            
            
            
            /* thumb over fade in */
    				$('img.wthumb_color').css('opacity', .0); 
    				$("img.wthumb_color").hover(function () {
    			      $(this).fadeTo("fast", 1);
    			    },function () {
    			      $(this).fadeTo("medium", 0);
    			    });
              

            $("#still_working").click(function () {
              $(this).hide();
            }); 

             $(".still_working").click(function () {
              $("#still_working").show();
            }); 
 
 
              
                 
			});
			/* array of colors */
			
			var rand_col = new Array ();
			rand_col[0] = "#ff0000";
			rand_col[1] = "#00ff00";
			rand_col[2] = "#0000ff";
			rand_col[3] = "#ffff00";
			rand_col[4] = "#ff00ff";
			rand_col[5] = "#00ffff";
			rand_col[6] = "#ff4e00";
			

      $(window).bind("load",function() {
      
			    /* random number generator  */
          var i = Math.floor(7*Math.random());
          
          /* background color changer */
          $('body').pulse({
              backgroundColors: [rand_col[i],'#ff4e00','#0000ff','#00ff00','#ff0000','#ffff00','#ff00ff','#00ffff'],
              speed: 10000
          });



      		$('#hands_tween').hide();
          $('#head').show();
          $('#head_pillow').show();
          $('#wp_nav').show();
          $('#content').show();
          $('#sidebar').show();
          $('#footer').show();
          
          
      });