/*
function show_op(num)
{
	if(num == 1)
	{
		document.getElementById('liste-dept').style.display = 'block';
		document.getElementById('liste-ville').style.display = 'none';
	}
	else
	{
		document.getElementById('liste-ville').style.display = 'block';
		document.getElementById('liste-dept').style.display = 'none';			
	}
	
}
*/

$(document).ready(function(){
	var imggm = $("#photo-gm img");
	$("#photos-pm img").hover( function () {
			var newgm = this.src;
			imggm.each( function () {
				this.src = newgm;
			});
		},
		function ()
		{
		}
	);	
});
