﻿// JScript-Datei
function PopUp(ziel){
	window.open(ziel, "Info", "width=550, height=660, left=0, top=0, scrollbars=yes, resizable=no");
}

function Fenster(id){
    var Fenstr = window.open("http://xpsitemanager.by-experience.com/Default.aspx?" + id, "Privacy", "width=800, height=770, left=300, top=100, scrollbars=yes, resizable=yes");
    Fenstr.focus();
}

function Statistik(url, query){
  var Fenstr = window.open("http://xpsitemanager.by-experience.com/statistik.aspx", "Statistik", "width=800, height=770, left=300, top=100, scrollbars=yes, resizable=yes");
  Fenstr.focus();
}

$(function() {
  //Bilder faden
  $('#s1').cycle({
    fx: 'fade',
    speed: 900,
    timeout: 5000
  });

  $('#untermenu ul').hide();

  //Untermenu anzeigen
  $('.navi .top').mouseover(function() {
    $('#untermenu ul').hide();
    var classe = "." + $(this).attr('rel');
    $(classe).show();
  });

  //Thumb Balken ausblenden
  $('.refPicBig').mouseover(function() {
    $('.thumbs, .balken').fadeIn('fast');
  });

  //Thumb Balken einblenden
  $('#head_page, #footer').mouseover(function() {
    $('.thumbs, .balken').fadeOut('fast');
  });

  //Bildwechsel bei Thumb Klick
  $('.refPic').click(function() {
    $('.thumbs a').removeClass('opacity');
    $(this).addClass('opacity');

    var pic = '#' + $(this).attr('rel');
    $(pic).hide();
  });
});