
Cufon.replace('h1', {fontFamily: 'Avenir Roman'});
Cufon.replace('h2', {fontFamily: 'Avenir Roman'});
Cufon.replace('h4', {fontFamily: 'Avenir Light Oblique'});
Cufon.replace('h5', {fontFamily: 'Avenir Light Oblique'});

$(document).ready(function() {

	$('body').supersleight();

	$("img.mpls").mouseover(function() {
		$("#mpls").fadeIn();
	});
	$("img.mpls").mouseout(function() {
		$("#mpls").fadeOut("slow");
	});
	$("img.esp").mouseover(function() {
		$("#esp").fadeIn();
	});
	
	$("img.esp").mouseout(function() {
		$("#esp").fadeOut();
	});
	
	
});
