jQuery(document).ready(function($) {
  $('div[id^=tv]').mouseenter(function() {
    var num = $(this).attr("id").substring(2);
    if (num != 4)
    {
      $(this).css('background', 'transparent url(' + templateDir + '/images/screen' + num + 'a.gif) no-repeat');
    }
  });
  $('div[id^=tv]').mouseleave(function() {
    var num = $(this).attr("id").substring(2);
    if (num != 4)
    {
      $(this).css('background', 'transparent url(' + templateDir + '/images/screen' + num + '.gif) no-repeat');
    }
  });

  $('#tv1').click(function() {
    window.open('../clients', '_self');    
  });

  $('#tv2').click(function() {
    window.open('../services', '_self');    
  });

  $('#tv3').click(function() {
    window.open('../news', '_self');    
  });

  $('#tv4').click(function() {
    window.location.href = "mailto:peter@mckaymedia.co.uk";
  });

  $('#tv5').click(function() {
    window.open('../profile', '_self');    
  });

});


