$(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:  [{
        address: 'Budapest, Munkásotthon Street, Magyarország 8',
        html: '<b>Netpositive Kft.</b><br />Tel. / Fax: +36 (1) 266 9043<br />info@netpositive.hu<br />1042 Budapest,<br />Munkásotthon utca 8. C.'
      }]
    });
  }
  if ($('#twitter').length) {
    twttr.anywhere(function(twitter) {
      twitter.hovercards();
      twitter('#twitter>a').hovercards({
        linkify: false,
        username: function() {
          return 'netpos';
        }
      });
    });
  }
});