// JavaScript Document
		     jQuery(document).ready(function($){
  $('#name').clearingInput(); // Input value will be 'The label text'
  $('#hiyuhk-hiyuhk').clearingInput(); // Input value will be 'The label text'
  
  
  // Set up Sliders
		// **************
		$(function(){

			$('#slider').anythingSlider({
				theme           : 'metallic',
				easing          : 'easeInOutBack',
				autoPlay            : true,      // This turns off the entire slideshow FUNCTIONALY, not just if it starts running or not
  				startStopped        : false,
				buildNavigation	: false,
				buildArrows : false,
				autoPlayLocked  : true,  // If true, user changing slides will not stop the slideshow
				resumeDelay     : 10000, // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
				animationTime : 0,
				delay     : 6000,
				onSlideComplete : function(slider){
					// alert('Welcome to Slide #' + slider.currentPage);
				}
			//});
    });
    $('#slider').anythingSliderFx({
        inFx: {
            'img' : { opacity: 1, time: 500 }
        },
        outFx: {
            'img' : { opacity: 0, time: 0 }
        }
	});
	
  });
  
  });
