var i = 0; 
var int=0;

$(window).bind("load", function() {
	var int = setInterval("doThis(i)",200);
});

function doThis() {
	var images = $('img').length;
	if (i >= images) {
		clearInterval(int);
	}
	$('img:hidden').eq(0).fadeIn(200);
	i++;
}

$(document).ready(function() {

	$("#imprint_body").hide();
	$("#imprint_head").click(function() {
		$("#imprint_body").slideToggle('500');
	});

	$("a.fancy").fancybox({
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayOpacity':	0.7,
		'overlayColor'	:	'#000'
	});
	
	$("a.iframe").fancybox({
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayOpacity':	0.7,
		'overlayColor'	:	'#000',
		'height'		:	328,
		'width'			:	528,
		'titleShow'     :   false
	});
	
	$("a.inline").fancybox({
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayOpacity':	0.8,
		'overlayColor'	:	'#000',
		'height'		:	312,
		'width'			:	512,
		'titleShow'     :   false
	});
	
	$('#tooltip abbr[title]').tipsy({
		gravity			:	'w'
	});

	$('#moviechange').innerfade({
		speed: 'fast',
		timeout: 4100,
		type: 'sequence',
		containerheight: '150px'
	});
	
});

