$(function(){
	$.fn.superbgimage.options = {
		z_index: -1,
		speed: 750,
 		showtitle: 0,
 		preload: 0, // 0-none, 1-preload images
		transitionout: 1,
		onHide: superbgimage_click,
		onShow: superbgimage_show
	};

	// initialize SuperBGImage
	$('#thumbs').superbgimage();

	$('#control a.prev').click(function() {
		return $('#thumbs').prevSlide();
	});

	$('#control a.next').click(function() {
		return $('#thumbs').nextSlide();
	});

});

function superbgimage_click(img) {
	
	$('#showtitle').fadeOut(1);
	
	if ($('#siloader').length === 0) {
		var loader = "<table id=\"siloader\" style=\"position:relative;z-index:3;width:100%;height:100%;\" border=\"0\"><tr><td valign=\"middle\" align=\"center\"><img id=\"loader\" style=\"display:block;\" src=\"/css/files/superbgloading2.gif\" alt=\"loading\" /></td></tr></table>";
		$('#superbgimage').append(loader);
		$('#siloader').fadeTo(0, 0.0);
	}
	$('#siloader').fadeTo('fast', 0.5);
	$.fn.superbgimage.options = {
		onShow: superbgimage_show
	}
}
function superbgimage_show(img) {

    $('#siloader').fadeTo('fast', 0.0);
    $('#superbgimage').css('background', 'none');
	
	if ($('#refinfo div.refinfo' + img).length > 0)
	{
		$('#superbgimage').append('<div id="showtitle"></div>');
		$('#showtitle').html($('#refinfo div.refinfo' + img ).html());
		$('#showtitle').fadeIn('slow');
	}
	
    $.fn.superbgimage.options = {
        onShow: null
    }
}
