<!--
$(document).ready(function(){
	
	/**********************************************************************/
	/*						*** SUPERBGIMAGE ***						  */
	/**********************************************************************/
	
	//	START CALLING SUPERBGIMAGE
	if($('#superbgimage img').length > 1)
	{
		// Options for SuperBGImage
		$.fn.superbgimage.options = { 
			slideshow: 1, // 0-none, 1-autostart slideshow
			slide_interval: 8000, // interval for the slideshow
			speed: 'slow', // function-callback hide image
			onShow: superbgimage_show, // function-callback show image
			onHide: superbgimage_hide // function-callback hide image
		};
	}
	else
	{
		// Options for SuperBGImage
		$.fn.superbgimage.options = {
			slideshow: 0 // 0-none, 1-autostart slideshow
		};
	}
	// 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");
}


//-->
