function preload() { 
    var args = preload.arguments; 
    imgs = new Array();
    for(x=0; x < args.length; x++) {
        imgs[x] = new Image();
        imgs[x].src = args[x];
    }
}
$(document).ready(function() {
    $("section.list article.boat aside a, section#technical a").fancybox({
    	'overlayShow'		: true,
    	'transitionIn'		: 'elastic',
    	'transitionOut'		: 'elastic',
    	'showCloseButton' 	: true
    });
    
    $('#slider').nivoSlider({
        effect: 'fade'
    });
    
    $('label[title]').hoverbox();
	$('mark[title]').hoverbox();
	$('th[title]').hoverbox();
	
	$('th[title]').append(' (*) ')
	
	$("a.email").mailto();
});

