/*		js bpce 		*/

$(document).ready(function() {

/*	ouverture dans une nouvelle fenetre et ajouter un message dans le title		*/

	$("a.popup").each(function(){
		var my_title=this.title;
		var my_link= $(this).text();

		if($('img', this).length > 0)
		{
			my_link = $('img', this).attr('alt') + my_link.replace(/<("[^"]*"|'[^']*'|[^'">])*>/, '');
		}
		else
		{
			my_link = my_link.replace(/<("[^"]*"|'[^']*'|[^'">])*>/, '');
		}
		
		if(my_title!='')
			this.title=my_title+' (nouvelle fenêtre)';
		else 
			this.title=my_link+' (nouvelle fenêtre)';
		
	});
	
	$("a.popup").click(function() {
		window.open(this.href, '_blank').focus();
		return false;
	});

	
})

