$(document).ready(
	function()
	{
		$(".son, .membre_groupe, .actu, .annonce").hover(
			//hover
			function() {
				$(this).css("backgroundColor","#333333");
				$(this).find(".border-top").css("backgroundColor","#333333");
				$(this).find(".border-bottom").css("backgroundColor","#333333");
			},
			//out
			function() {
				$(this).css("backgroundColor","#000000");
				$(this).find(".border-top").css("backgroundColor","#000000");
				$(this).find(".border-bottom").css("backgroundColor","#000000");
			}
		);
		
		$("#alerte").dialog({
				open:function() { $("embed").hide(); },
				resizable: false,
				modal: true, 
				overlay: { 
					opacity: 0.5, 
					background: "black" 
				},
				width:250,
				height:150,
				buttons: {
					"Ok": function() { $(this).dialog("close") }
				},
				hide:true,
				close:function() { $("embed").show(); }
		});
		
		
		$(".a_texte").hide();
		$(".actu").click(function() {
			if ($(this).find(".a_texte").css('display') == 'none')
			{
				$(this).find(".a_fleche").css('backgroundPosition','bottom');
				$(this).find(".a_texte").fadeIn('fast');
			}
			else
			{
				$(this).find(".a_fleche").css('backgroundPosition','top');
				$(this).find(".a_texte").fadeOut('fast');
			}
		});
		
		
		$(".an_texte").hide();
		$(".annonce").click(function() {
			if ($(this).find(".an_texte").css('display') == 'none')
			{
				$(this).find(".an_fleche").css('backgroundPosition','bottom');
				$(this).find(".an_texte").fadeIn('fast');
			}
			else
			{
				$(this).find(".an_fleche").css('backgroundPosition','top');
				$(this).find(".an_texte").fadeOut('fast');
			}
		});
		
	}
);
		
		
var newWin = null;

function popup(url)
{
	var largeur = 600;
	var hauteur = 300;
	var top = (( screen.height-hauteur ) / 2);
	var left = (( screen.width-largeur ) / 2);
	var options = 'resizable,height=' + hauteur + ',width=' + largeur + ',top=' + top + ',left=' + left + 'location=no,menubar=no,scrollbars=no,menubar=no,toolbar=no';
	newWin = window.open(url, 'newWin', options);
	newWin.focus();
}
