
	$(document).ready(function(){
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
 
});
	$(function() {
	$.fn.superbgimage.options = {
		id: 'superbgimage', 
		z_index: 0, 
		inlineMode: 0, 
		showimage: 1, 
		vertical_center: 1, 
		transition: 0, 
		transitionout: 1, 
		randomtransition: 0, 
		showtitle: 0, 
		slideshow: 0, 
		slide_interval: 5000, 
		randomimage: 0, 
		speed: 'slow', 
		preload: 0, 
	};
	$('#thumbs1').superbgimage();
});
