1. $(document).ready(function() {
  2. $('#searchButton').click(function () {
  3. $('#theMap').html('<img id="selfCareMain" width="1024" height="600" src="images/selfcare_menu/selfcare_menu.jpg" usemap="mapArea" />');
  4. $('html, body').animate({
  5. scrollTop: $("#theMap").offset().top
  6. }, 1000);
  7. var mapCode = "<area shape='rect' coords='534,137,656,169' title='Reboot the STB with this button.' onclick='' /><area shape='rect' coords='534,192,726,219' title='MyAccount options in here' onclick='displayMyaccount()' />";
  8. $('#mapArea').html(mapCode);
  9. });
  10. });
  11. function displayMyaccount() {
  12. $('#theMap').html('<img id="selfCareMyaccount" width="1024" height="600" src="images/selfcare_menu/selfcare_myaccount_menu.jpg" usemap="mapArea" />');
  13. }