$(document).ready(function(){
	
	$(function() {
		// Options for SuperBGImage
		$.fn.superbgimage.options = {
			id: 'carousel-img',
			inlineMode: 1,
			transition: 1,
			slideshow: 1,
			randomimage: 0,
			slide_interval: 7000,
			speed: 'slow',
			preload: 0, // 0-none, 1-preload images
			onHide: hideImage,
			onShow: showImage // function-callback show image
	
		};
		$('#carousel-images').superbgimage().hide();
	});
	
	
	
	$('a.prev').click(function() {
		$('#carousel-images').stopSlideShow();
		return $('#thumbs').prevSlide();
	});

	$('a.next').click(function() {
		$('#carousel-images').stopSlideShow();
		return $('#thumbs').nextSlide();
	});
	
});


function showImage() {
	$("#preloader").hide();
}

function hideImage() {
	$("#preloader").show();
}

function changeHeroData(i) {
	var c = $('#carousel-panels .panel-content:eq('+i+')').html();
	$('#carousel-panel-container').html(c);
}









