       
        function pwdFocus() {
            $('#fakepassword').hide();
            $('#password').show();
            $('#password').focus();
        }

        function pwdBlur() {
            if ($('#password').attr('value') == '') {
                $('#password').hide();
                $('#fakepassword').show();
            }
        }
			
		// set timeout
		var tid = setTimeout(mycode, 0000);
		function mycode() {
  		$("#list2").removeClass("list2");
  		$("#list2").addClass("list2quote1");
  		$("#list2").text("I think they're the best. They've worked for us now for over 15 years!");
  		tid = setTimeout(mycode2, 10000); // repeat myself
		}
		function mycode2() {
		$("#list2").removeClass("list2quote1");
  		$("#list2").addClass("list2quote2");
  		$("#list2").text("I can't sing their praises enough. They really are an excellent company and an excellent service provider");
  		tid = setTimeout(mycode3, 10000); // repeat myself		
		}
		function mycode3() {
		$("#list2").removeClass("list2quote2");
  		$("#list2").addClass("list2");
		$("#list2").text("It sounds too good to be true but, so far, Autonomy has always been able to deliver anything I've asked them to do");
  		tid = setTimeout(mycode, 10000); // repeat myself	
		}
		// loops forever - don't call.
		function abortTimer() { // to be called when you want to stop the timer
  		clearTimeout(tid);
		}	
				
		function videoEnd() {
			
		var waittid = setTimeout(partOne, 1000);
		function partOne() {
		$("#video").fadeOut(1000);
		$("#videoframe").fadeOut(1000);
		setTimeout(partTwo, 1000); // repeat myself
		}
				
		function partTwo() {
 		$('#container').fadeOut(0);
		$('#container').append('<iframe src="stage.html" frameborder="0" scrolling="auto" width="1078" height="510"><p>Your browser does not support iframes.</p></iframe>');
		setTimeout(partThree, 1000); // repeat myself
		}
		
		function partThree() {
 		$('#container').fadeIn();
		
		}
		
		}
