
$(document).ready(function() {
  var newsLetterDefaultText = 'e-mail address';
  if ($('#newsLetterForm #email').attr('value') == '')
  	$('#newsLetterForm #email').attr({ value: newsLetterDefaultText });
  	
  $('#newsLetterForm #email').focus(function() {
  	if (this.value == newsLetterDefaultText) this.value = '';
  });
  
    $('#newsLetterForm #email').blur(function() {
    	if (this.value == '') this.value = newsLetterDefaultText;
    });

  // Fix for IE7 bug
  $('.level1 li.selected .level2').each(function(){
  	$(this)[0].style.left = $($(this)[0].parentNode).position().left;
   });
});
