$(document).ready(function()
{
 if($.browser.msie && jQuery.browser.version.substr(0,1) < 9)
 {
  //kennt kein min-height
  $("#breadCrumb").css("height", "2em");
 }

 //span-Elemente um die <li>, damit sie schwarz bleiben
 $('#content li').wrapInner('<span>');

 //---------------------------------------------------------------------------

 $('#changeView').live('click', function(e)
 {
  e.preventDefault();
  var url = "http://";
  
  if(window.location.hostname == "localhost")
   url += "localhost/fussball/inc/ajax/changeView.php";
  else if(window.location.hostname == "192.168.2.115")
   url += "192.168.2.115/fussball/inc/ajax/changeView.php";
  else
   url += "www.fussballland-deutschland.de/inc/ajax/changeView.php";
  
  $.ajax(
  {
   url: url,
   context: document.body, 
   success: function()
   {
    //noch oben scrollen und neu laden
    scroll(0,0);
    location.reload();
   }
  });
 });
 //---------------------------------------------------------------------------
 
 $('#dontShowHint').live('click', function(e)
 {
  e.preventDefault();
  var url = "http://";
  
  if(window.location.hostname == "localhost")
   url += "localhost/fussball/inc/ajax/dontShowMobileHint.php";
  else if(window.location.hostname == "192.168.2.115")
   url += "192.168.2.115/fussball/inc/ajax/changeView.php";
  else
   url += "www.fussballland-deutschland.de/inc/ajax/dontShowMobileHint.php";
  
  $.ajax(
  {
   url: url,
   context: document.body, 
   success: function()
   {
    $('#switchBox').hide();
   }
  });
 });
 //---------------------------------------------------------------------------
});
//---------------------------------------------------------------------------
