function displayText( lurl, area ){

$.ajax({
url : lurl,
success : function(data){
$( area ).html(data);
}});
}

function displayTextTip( lurl, area ){
var tip = new Array();
tip[0] = "Did you know that Gallerius is actualised via internet?";
tip[1] = "Image Mapper will help you improve your www";
var i = Math.floor( 2 * Math.random() )

$( area ).html( tip[ i ] );
}

function swapImages(){
var $active = $('#myBackground .active');
var $next = ($('#myBackground .active').next().length > 0) ? $('#myBackground .active').next() : $('#myBackground img:first');
$active.fadeOut(function(){
$active.removeClass('active');
$next.fadeIn().addClass('active');
});
}

