$(document).ready(function(){
  // User website height
  // var height = $(document).height();
  // var height = $(document).height()-194;
  // $('#navigation').height(height);
  // height=height+16;
  // $('#main').height(height);
  
  // guestbook
  // get the value from the hidden field and then use it in the drop down
  $('#id_user_profile_value').hide();
  var value = $('#id_user_profile_value').val();
  $('#id_user_profile').val(value);
  
  // if(navigator.userAgent.indexOf('Safari')>-1) {
  //   $('#id_user_profile').parent("p").hide();    
  // }else{
  //   $('#id_user_profile').parent().parent().hide();  
  // }
  if(navigator.userAgent.indexOf('Firefox')>-1) {
    $('#id_user_profile').parent().parent().hide();  
  }else{
    $('#id_user_profile').parent("p").hide();    
  }
});
