$(function(){
  if ($('#promo').length) {
    $('#promo .slideshow').cycle({
      fx:       'fade',
      timeout:  9000,
      speed:    1000,
      prev:     '#promo ul.nav li.prev',
      next:     '#promo ul.nav li.next'
    });
  }
  if ($('#gmap').length) {
    $('#gmap').gMap({
      zoom:     15,
      controls: ['GSmallMapControl'],
      markers:  [{
        latitude: 47.560964,
        longitude: 19.056857,
        html: '<b>Netpositive Kft.</b><br />Tel. / Fax: +36 (1) 266 9043<br />info@netpositive.hu<br />1031 Budapest,<br />Záhony utca 7. C<br />Graphisoft park C épület'
      }]
    });
  }
  if ($('#twitter').length) {
    twttr.anywhere(function(twitter) {
      twitter.hovercards();
      twitter('#twitter>a').hovercards({
        linkify: false,
        username: function() {
          return 'netpos';
        }
      });
    });
  }
});

