// application wide javascript
// window load
$(document).ready(function() {
  $('.search_items label, .signup_items label, .widget_input_box label, .field label').inFieldLabels({
    fadeOpacity: 0, 
    fadeDuration: 0
  });

  if ($.browser.msie) {
    $('#topSearchGo').each(function() {
      this.style.filter = "none";
    });
                }
  $('#topSearch').mouseover(function() {
    $('#topSearchGo').addClass('search_head_focused');
    if ($.browser.msie) {
      $('#topSearchGo').each(function() {
        this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src="+this.src+",sizingMethod='scale')";
      });
                }
  }).mouseout(function() {
    $('#topSearchGo').removeClass('search_head_focused');
    if ($.browser.msie) {
      $('#topSearchGo').each(function() {
        this.style.filter = "none";
      });
            }
        });
  
  if($.browser.safari) {
    $('.firstwidget').css({ 'margin-top': '35px' });
        }
});
