$(document).ready(function() {
  // Banniere
  $('#banner').cycle({
    fx: 'fade',
    timeout: 7500
  });
  // Merchandising
  $('.merchpics div').cycle({
    fx: 'fade',
    timeout: 1000
  });
});

function changeitem(id,quantity) {
  $.post('/ajax/changeitem.php', {id:id,quantity:quantity}, function(data) {
    eval(data);
  });
}

function createpopup(id,w,h) {
  $('select').hide();
  $('<div id="blackfade" style="height:' + $('#page').height() + 'px"/>').appendTo('#page');
  return $('<div id="' + id + '" class="popup" style="width:' + w + 'px;height:' + (28+h) + 'px;left:' + Math.floor(($(window).width()-w)/2) + 'px;top:' + ($("body").scrollTop()+Math.floor(($(window).height()-(h+58))/2)) + 'px;"/>');	
}

function closepopup(id) {
	$(id).remove();
	$('#blackfade').remove();
	$('select').show();
}

