$("document").ready(function() {
	// Home Page SuperBGImage
	$(function() {
	$('.homeTitle p').hide();
	
		// Options for SuperBGImage
		$.fn.superbgimage.options = {
			z_index: 0, // z-index for the container
			slideshow: 1, // 0-none, 1-autostart slideshow
			slide_interval: 7000, // interval for the slideshow
			preload: 1, // 0-none, 1-preload images
			onShow: superbgimage_show, // function-callback show image
			onHide: superbgimage_hide // function-callback hide image	
	};
	
		// initialize Animated SuperBGImage
		$('#animatedBG').superbgimage();
	});
	
	// function callback on hiding image
	function superbgimage_hide(img) {
		$('.homeTitle p').fadeOut("slow");
	}
	
	// function callback on showing image
	// get title and display it
	function superbgimage_show(img) {
		$('#superbgimage').css('background', 'none');
		if ($('#animatedBG').css('display') == 'block') {
			$(".homeTitle p").html($('#animatedBG a' + "[rel='" + img + "']").attr("alt")).text();
			$('.homeTitle p span').hide();
			$('.homeTitle p').fadeIn("slow",function() {
				//set delay and fade in line 2
				setTimeout(function() {
				$('.homeTitle p span').fadeIn("slow");
				},1000);
			});
		}
	}
});
