﻿$(document).ready(function() {
  /**
  FOR IE6 non link hover and pseudo
  **/
  $('#topMenu ul li:last-child').css('border-bottom', '0px');
  $('#topMenu').children('li:last').css('height', '36px');
  $('#topMenu li').hover(function() {
    $(this).children('ul').css('display', 'block');
    //FOR IE
    $(this).find('li').css('width', $(this).children('ul').width() + 'px');
  },
    function() {
      $(this).children('ul').css('display', 'none');
    }
  )
  if ($('.heroImage').position() == null) {
    $('#pageMargin').css('margin-top',
    $('#mainContent').position().top - $('#contentBody').position().top
    )
  }
});
