jQuery(function($){

  //#__________________________________________________________________________\
  //# SUBSCRIBE TO NEWSLETTER
  //#__________________________________________________________________________\

  $('#connect-with-us-menu').after(''+
  '<div id="subscribe_container" style="clear:left; padding-top:10px;">Get our newsletter<br />'+
  '<input type="text" id="subscribe_email" value="Enter your email" /><br /><input id="subscribe_submit" type="button" value="Subscribe" />'+
  '</div>');

  $('#subscribe_email').
  bind('focus', function(){$(this).val(this.value == 'Enter your email' ? '' : this.value);}).
  bind('blur', function(){$(this).val(this.value == '' ? 'Enter your email' : this.value);}).
  bind('keydown', function(e){if (e.keyCode == 13) {$('#subscribe_submit').trigger('click');}});

  $('#subscribe_submit').bind('click', function(){
    if (/([a-zA-Z][\w\.-]*[a-zA-Z0-9]@[a-zA-Z0-9][\w\.-]*[a-zA-Z0-9]\.[a-zA-Z][a-zA-Z\.]*[a-zA-Z])$/.test($('#subscribe_email').val()))
    {
      $('#subscribe_container').load('/main/subscribe?em='+escape($('#subscribe_email').val()));
    }
    else
    {
      alert('Email address not valid');
    }
  });
  //#__________________________________________________________________________\
    //# HOMEPAGE TABS
    //#__________________________________________________________________________\  
    $('a.homepage_tab').click(function () {
      var link_id = $(this).attr('id');
      homepage_change_tab(link_id);
    });


    $('div#download-tabs a').click(function () {
      var link_id = $(this).attr('id');
      press_change_tab(link_id);
    });

  });

  var homepage_tab_active = 'homepage_tab_benefits';
  function homepage_change_tab(link_id)
  {
    $('#' + homepage_tab_active).removeClass('active');
    $('#' + link_id).addClass('active');

    $('#' + homepage_tab_active + '_content').hide();
    $('#' + link_id + '_content').show();

    homepage_tab_active = link_id;
  }


  function press_change_tab(link_id)
  {
    $('div#download-tabs a.current').removeClass('current');
    $('div.press-release-box.current').removeClass('current').hide();

    $('a#' + link_id).addClass('current');
    $('div#' + link_id + '_content').addClass('current');
    $('div#' + link_id + '_content').show();
  }
  
  
  function _alert(msg_title, msg_body)
  {
    $("#dialog:ui-dialog").dialog("destroy");
    $('#dialog_box').html(msg_body).dialog({ 
      modal:       true,
      draggable:   false,
      resizable:   false,
      title:       msg_title,
      dialogClass: 'hidden_close_button',
      show:        'fade', 
      hide:        'fade', 
      buttons:     [{
                      text: "Ok",
                      click: function() { $(this).dialog("close"); }
                   }]
    });    
  }
