/**
 * Script for Homepage
 * @project   Mister Spex
 */
function submitOnEnter(e) {
  var ENTER_KEY = 13;
  var code = "";

  if (window.event) { // IE
    code = e.keyCode;
  }
  else if (e.which) { // Netscape/Firefox/Opera
    code = e.which;
  }
  if (code == ENTER_KEY) {
    NewsletterControl('open');
  }
}

$(window).load(function()
{  
  setTimeout(function()
  {
    $('head').append('<link rel="stylesheet" href="/css/section/anythingslider.css">');
    $.getScript('/js/jquery-plugins/jquery.anythingslider.js', function()
    {
      $('#anythingSlider').anythingSlider({height: 300,width: 715});
    });
    
    // Get BackgroundImage
    $('body').smartBackgroundImage('http://d26hhearhq0yio.cloudfront.net/content/misterspex/hintergruende/startseite-40.jpg', '#000000');
    initFacebook();
  }, 75);  
});

