(function ($) {

	/* Start - Home Slider  */
	$(document).ready(function(){

		$("div#slider-area img").each(function() {
			if ($(this).attr("src").length == 0) {
				$(this).parent().remove();
			}
		});
	
		$("#slider-area").easySlider({
			prevId: 'prevBtn',
			nextId: 'nextBtn',
			prevText: 'Previous',
			nextText: 'Next',
			autogeneratePagination: true,
			orientation: 'horizontal',
			speed: 800,
			autoplayDuration: 3000,
			restartDuration: 3000,
			loop: true,
			hoverPause: 0,
			hover: false,
			easing: null,
			pauseable: true,
			pauseButtons: false,
			numeric: true,
			numericId: 'controls',
			showComment: true
		});
	});
	/* End - Home Slider */
	
})(jQuery);