$(document).ready(function()
{
	/******************************/
	
	$('.courriel').nospam({
	replaceText: true
	});
	
	/*************************************
	*********      FACEBOX     ***********
	*************************************/
	
	$('a[rel*=facebox]').facebox();
	
	/*************************************
	*********    IMG PRELOAD   ***********
	*************************************/
	
	$.preload( 'a img', {
				find:/(.*)\.(gif|jpg|png)/,
				replace:'$1_hover.$2'
	});
	
	/*************************************
	***********    BT HOVER   ************
	*************************************/
	
	var imgSource;
	var imgSourceSplit;
	var newImgSource;
	
	$('a > img').hover(function()
	{
		imgSource = $(this).attr("src");
		imgSourceSplit = imgSource.split(".");
		newImgSource = imgSourceSplit[0]+"_hover."+imgSourceSplit[1];
		$(this).attr({src: newImgSource});
	}, function()
	{
		$(this).attr({src: imgSource});
	});
	
	/*************************************
	********     GOOGLE MAP      *********
	*************************************/
	
	$('#google_map').jmap(
		{
			language: "fr",
			mapType: "map",
			mapDimensions: [452, 328],
			mapZoom: 16
		}
	);
	
	$('#google_map').searchAddress(
		{
			address: "5 Rue Jeanne d'Arc, 94220 Charenton",
			addMarker: true
		}
	);

	
	/*************************************
	***********     MENU      ************
	*************************************/
	
	$('#mainmenu > li').hover(function()
	{
		$(this).find('ul:hidden').slideDown('fast');
	}, function()
	{
		$(this).find('ul').slideUp('fast');
	});
});
