﻿$(document).ready(function(){
  $('div.gotomeeting').html(
    '<div><img src="/images/gotomeeting.gif" /></div>' +
    '<div><img src="/images/meeting-id.gif"></div>' +
    '<input type="text" name="MeetingID" size="10" style="width:202px;" /><br />' +
    '<input type="image" src="/images/meet-now.gif" />'
  );
  
  $('div.gotomeeting input[type="image"]').click(function(){
    var form = document.forms[0];
    form.action = "https://www.gotomeeting.com/join/" + $('input[name="MeetingID"]').val();
    form.submit();
  });
  
  $('a[href*=".jpg"], a[href*=".gif"], a[href*=".png"], a[href*=".swf"]').ceebox({ videoRatio: '4:3' });
  
  var url = ("/" + location.pathname.split("/")[1] == "/") ? "/Home" : "/" + location.pathname.split("/")[1];
  $('#qm0 a[href^="' + url + '"]').addClass('active');
});
