/**
 * @author michal
 */
$(document).ready(function(){
	
	//preLoadImages
	jQuery.preLoadImages('/images/2011/vlag_de_active.png','/images/2011/vlag_nl_active.png');
	//end preLoadImages
	
	//ie 7 flash position fix
	if($.browser.msie && $.browser.version.substring(0,1) == '7'){
		$('#menu object').css('top','1px');
	}
	//end ie 7 flash position fix
	
	//innerfade
	if ($('ul#fadingitems').find('li').length > 1) {
		$('ul#fadingitems').innerfade({
			speed: 2000,
			timeout: 5000,
			type: 'random',
			containerheight: '300px'
		});
	}
	//end innerfade		
	
});//end document ready

$(window).load(function(){
	
	
	
});//end window load

//preload images
(function($){var cache=[];$.preLoadImages=function(){var args_len=arguments.length;for(var i=args_len;i--;){var cacheImage=document.createElement('img');cacheImage.src=arguments[i];cache.push(cacheImage);}}})(jQuery)
//end preload images

