jQuery(document).ready(function(){
	jQuery("#slider").easySlider({
		auto: true,
		continuous: true,
		controlsShow: true,
		controlsFade: true,
		pause: 7000,
		speed: 1600
	});
	jQuery(".SEARCH_FORM_BOX").labelify({
		labelledClass: "SearchLabel",
		text:function(input){ return "Enter Search Term";}
	});
	jQuery("#content-slider").slider({
		orientation: 'vertical',
		animate: true,
		change: handleSliderChange,
		slide: handleSliderSlide,
		value: 100
	});
});
