$(document).ready(function(){ 
	// Superfish
	$("ul.sf-menu").superfish({animation: {height:'show'}});
	// Options for SuperBGImage
//	$.fn.superbgimage.options = {transition: 0};
	// initialize SuperBGImage
//	$('#thumbs').superbgimage().hide();
	// fancybox
	$(".Fancy").fancybox();
	$(".iFrameBox").fancybox({
		'width': 800,
		'height': 470,
		'type': 'iframe'
	}
	);
});
$(function() {
 
	// Options for SuperBGImage
	$.fn.superbgimage.options = {
		preload: 1,
		transition: 1, // 0-none, 1-fade, 2-slide down, 3-slide left, 4-slide top, 5-slide right, 6-blind horizontal, 7-blind vertical, 90-slide right/left, 91-slide top/down
		slideshow: 1, // 0-none, 1-autostart slideshow
		slide_interval: 8000, // interval for the slideshow
		randomimage: 1, // 0-none, 1-random image
		speed: 'slow' // animation speed
	};
 
	// initialize SuperBGImage
	$('#thumbs').superbgimage().hide();
 
});

