// JavaScript Document
$(function() {

	// Options for SuperBGImage
	$.fn.superbgimage.options = {
		id: 'superbgimage', // id for the containter
		slideshow: 1, // 0-none, 1-autostart slideshow
		slide_interval: 5000, // interval for the slideshow
		speed: 'slow', // animation speed
		onShow: superbgimage_show, // function-callback show image
		onHide: superbgimage_hide // function-callback hide image
	};
	// initialize SuperBGImage
	$('#superbgimage').superbgimage().hide();
});

// function callback on hiding image
function superbgimage_hide(img) {
	$('.maintitle p').fadeOut("slow");	
}

// function callback on showing image
// get title and display it
function superbgimage_show(img) {
	$(".maintitle p").html($("img.activeslide").attr("alt")).text();
	$('.maintitle p span').hide();
	$('.maintitle p').fadeIn("slow");
	$('.maintitle p span').delay(2500).fadeIn("slow");
}
