function doGoogleMap() {
if (self.GBrowserIsCompatible) {
var map = new GMap2(document.getElementById("googlemap"));
map.addControl(new GSmallMapControl());
//map.setCenter(new GLatLng(0.2137,16.9849), 3);
map.setCenter(new GLatLng(30.140364,-7.65625), 2);
}//if
}//function
$(document).ready(function() {
//Add to favourites
newLI = $('
Add to favourites');
newLI2 = $('');
if ($('body').hasClass('french')) {
newLI = $('Ajouter à mes favoris');
newLI2 = $('');
}//if
if ($('body').hasClass('portuguese')) {
newLI = $('Adicionar aos favoritos');
newLI2 = $('');
}//if
$('#cta').prepend(newLI);
$('#footercta').prepend(newLI);
$('#footerlinkprint').after(newLI2);
if (window.sidebar) {
$('a#link-fav').click(function() {window.sidebar.addPanel(document.title,self.location,'')});
$('a#link-fav2').click(function() {window.sidebar.addPanel(document.title,self.location,'')});
} else if (window.external) {
$('a#link-fav').click(function() {window.external.AddFavorite(self.location,document.title)});
$('a#link-fav2').click(function() {window.external.AddFavorite(self.location,document.title)});
} else if (window.opera) {
$('a#link-fav').click(function() {
var e = document.createElement('a');
e.setAttribute('href',self.location);
e.setAttribute('title',document.title);
e.setAttribute('rel','sidebar');
e.click();
});
$('a#link-fav2').click(function() {
var e = document.createElement('a');
e.setAttribute('href',self.location);
e.setAttribute('title',document.title);
e.setAttribute('rel','sidebar');
e.click();
});
}//if
doGoogleMap();
if ($.browser.msie && $.browser.version== '6.0') {
$('ul#nav li').hover( function() {
$(this).addClass('hover');
}, function() {
$(this).removeClass('hover');
});
}//if
});