$(document).ready(function(){
  var lHeight=parseInt($('#left').height());
  var cHeight=parseInt($('#content').height());
  var nHeight=Math.max(lHeight,cHeight) + 'px';
  $('#left_wrap').height(nHeight);
  $('#content_wrap').height(nHeight);
  $('#Username').focus(function(){
    $(this).val('');
  });
  $('#fPassword').focus(function(){
    $('#fPassword').hide();
    $('#Password').show();
    $('#Password').focus();
  });
  $('#Password').blur(function(){
    if($('#Password').attr('value')=='')
    {
      $('#Password').hide();
      $('#fPassword').show();
    }
  });
  $('#Search').focus(function(){
    $(this).val('');
  });
  $('#left_nav ul li a').each(function()
  {
    var theLink=$(this).attr('href');
    var theURL=$(location).attr('href');
    if(theLink==theURL)
    {
      $(this).addClass('active_product_link');
    }
  });
  $('#nav ul li a').each(function()
  {
    var theLink=$(this).attr('href');
    var theURL=$(location).attr('href');
    if(theLink==theURL)
    {
      $(this).addClass('active_main_link');
    }
  });
});

