$(function() {
  $(document).not('input').pngFix();
  $('#_slide_home').cycle();

  if ($('body').attr('id') == 'contact-form')
  {
    $('#contact_map').css({width: '100%', height: 350});
    var LatLng = new google.maps.LatLng(50.6390033, 5.7826773);
    var options = {
      zoom: 12,
      center: LatLng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById('contact_map'), options);
    var marker = new google.maps.Marker({
      position: LatLng,
      map: map,
      title: 'Vins et saveurs d\'Italie'
    });
  }

  $('#sidebar_news_cycle').cycle();
})

