/*
 *	Incrément le nombre de fois ou chaque news a été affichées.
 */


function plusOne(IDs,CC)
{
	$.ajax({
   		type: "POST",
   		url: "newsPlusOne,"+IDs+"."+CC+".html",
   		success: function(msg){
     		
   		}
 	});
 
	
	
	
}

function getCC2()
{
	var i=document.location.href.length;
	var reversedURL = "";
	for (i; i > 0; i--)
	{
		reversedURL += (document.location.href.charAt(i));
	}
	CCs = reversedURL.split(".");
	CC = CCs[1].charAt(1)+CCs[1].charAt(0);
	return CC;
}


DD_belatedPNG.fix('img');

$(document).ready(function(){

var CC = getCC2();
switch (CC)
{
case "en":
  $('#partners').html('<a href="http://www.ticketmaster.co.uk/event/120044D6B99642C3" style="display: block; width: 380px; position: relative; height: 25px; margin: 72px auto 0;"></a>');
  break;
default:
  $('#partners').html('');
}


});
