$(document).ready(function() {


// code gestion redirection
$("#content_centre").hide();
$("#contentgche").hide();

$('#header').after('<div class="redirection">Avertissement : Redirection</div>').show();
$('.redirection').after('<div class="text-redirection">Le site Internet du stade olympique arlésien a changé d\'adresse : <a class="jqbookmark" title="Ajouter aux favoris" href="http://www.soarlesathletisme.fr/">http://soarlesathletisme.fr</a></div>').show();
$('.text-redirection').after('<div class="text-redirection-2">Nous vous conseillons de rajouter cette nouvelle adresse dans <a class="jqbookmarkF" title="Ajouter aux favoris" href="http://www.soarlesathletisme.fr/">vos favoris</a>.').show();
$('.text-redirection-2').after('<div class="choix1"><a class="jqbookmark" title="Ajouter aux favoris" href="http://www.soarlesathletisme.fr/">Aller sur la nouvelle adresse et ajouter à mes favoris !</a></div>').show();
$('.choix1').after('<div class="choix2"><a href="##">Voir l\'ancien site Internet</a></div>').show();


// ajouter favoris

if(window.opera) {
		if ($("a.jqbookmark").attr("rel") != ""){
			$("a.jqbookmark").attr("rel","sidebar");
		} 
	}

	$("a.jqbookmark").click(function(event){
		url = "http://www.soarlesathletisme.fr/"
		window.location = url
	}).click(function(event){
		event.preventDefault();
		var url = this.href;
		var title = this.title;
		
		if (window.sidebar) { // Mozilla Firefox Bookmark
			window.sidebar.addPanel(title, url,"");
		} else if( window.external ) { // IE Favorite
			window.external.AddFavorite( url, title);
		} else if(window.opera) { // Opera 7+
			return true; // do nothing
		} else { 
			 alert('Unfortunately, this browser does not support the requested action,'
			 + ' please bookmark this page manually.');
		}
	
	});
	
	$("a.jqbookmarkF").click(function(event){
		event.preventDefault();
		var url = this.href;
		var title = this.title;
		
		if (window.sidebar) { // Mozilla Firefox Bookmark
			window.sidebar.addPanel(title, url,"");
		} else if( window.external ) { // IE Favorite
			window.external.AddFavorite( url, title);
		} else if(window.opera) { // Opera 7+
			return true; // do nothing
		} else { 
			 alert('Unfortunately, this browser does not support the requested action,'
			 + ' please bookmark this page manually.');
		}
	
	});

 // Ancien site Internet
$(".choix2").click(function(event){
$("#content_centre").fadeIn();
$("#contentgche").fadeIn();
$(".redirection").fadeOut();
$(".text-redirection").fadeOut();
$(".text-redirection-2").fadeOut();
//$(".choix1").css('margin-left','15%');
$(".choix2").hide();

});

});
