var logoCounter = 1;
var bgCounter = 0;

$(document).ready(function(){
        $.fn.supersized.options = {  
        startwidth: 1280,  
        startheight: 800,
        vertical_center: 1,
  };
  if (window.bg) {
    //$('body').css('background', '#000 repeat-x right bottom');
    $('body').prepend('<a href='+link+' id="supersize"><img src='+bg+' /></a>');
    $('#supersize').supersized();
  } /*else {
    //$('#supersize').supersized();
    $('body').css('background', '#222  repeat-x right bottom');
    //$('body').prepend('<div id="supersize"><img src='+bg+' /></div>');
  }
  //fileadmin/templates/imgs/bg-2.jpg  url('+bg+')*/
  
  
  
  // DEMO FUNCTIONS
  /*
  
  var $style = $('#supersize img').attr('style');
  $('#supersize').click(function(){
    bgCounter++;
    if (bgCounter>8) bgCounter = 1;
    
    $(this).html('<img src="fileadmin/templates/imgs/bg-'+bgCounter+'.jpg" style="'+$style+'" />');
    
    return false;
  });
  */
});


