function GetCookie()
{ return false; }

$(document).ready(function(){

$('#content p.photos-gauche a img').each(function(){
  $('#content').append('<img style="display: none;" src="'+encodeURI($(this).parent().attr('href'))+'"/>');
});
$('#content p.photos-gauche a img').mouseenter(function(){
  $('#content p.photos-gauche img.grande-photo').attr('src',$(this).parent().attr('href'));
});

$('#content a[href$=.JPG] > img, #content a[href$=.jpg] > img, #content a[href$=.PNG] > img, #content a[href$=.png] > img').parent().slimbox();

$('#content .meteo').each(function(){
  $(this).load(templateuri+'/meteo.php #day_tbl',function(){
    $(this).find('a').attr('href','#');
    $(this).find('*').removeAttr('onclick');
    $(this).find('tr > td').each(function(){
      if ( !$(this).hasClass('selected_desc') && !$(this).hasClass('selected') )
        $(this).remove();
    });
    $(this).find('.forecast_arrows').remove();
    $('#day_tbl > tbody > tr.days').remove();
    $('#day_tbl > tbody > tr:first-child').append($('#day_tbl > tbody > tr:first-child + tr + tr > td'));
    $('#day_tbl > tbody > tr:first-child + tr').append($('#day_tbl > tbody > tr:first-child + tr + tr + tr > td'));
    $('#day_tbl > tbody > tr + tr + tr').remove();
    $('#day_tbl > tbody > tr > td + td + td + td + td').remove();
  });
});

});
