﻿/*
#///////////////////////////////////////////////////////////
#
#  @project: vieth-osterwald.de
#  @start  : 23.11.2011
#  @author : Bernd Neuamnn
#  @source : menu.js
#
#  (c) 2011 by benman-IT, BERND NEUMANN
#///////////////////////////////////////////////////////////
#   www.benman-it.de
*/
// jquery plugin -------------------------------------------
// Usage: $(['img1.jpg','img2.jpg','img3.jpg']).preload();
$.fn.preload = function() {
    this.each(function(){
        $('<img/>')[0].src = this;
    });
}

//--------------------------------------------------------
//$(['/pics/m1.jpg','/pics/m2.jpg','/pics/m3.jpg','/pics/m4.jpg','/pics/m5.jpg','/pics/m6.jpg']).preload();
//$(['/pics/b1.jpg','/pics/b2.jpg','/pics/b3.jpg','/pics/b4.jpg','/pics/b5.jpg','/pics/b6.jpg']).preload();

//----------------------------------------------------------
// start
$(document).ready(function(){
	//showinh('start');
	var ninhalt = function(antwort){$('#content').html(antwort);};
    $.get(encodeURI('/content/de/start.html'),ninhalt,'html');
	
	// tickertext aus DB laden
	var tickerinhalt = function(antwort){
		 $('#slider1_content marquee').html(antwort);
		 $('#slider1_content marquee').marquee();
	};
      $.get(encodeURI('/cgi-bin/showstatus.pl'),tickerinhalt,'html');
	 	
	 	
	
});

//--------------------------------------------------------
var aktives_menue = '';
var aktives_hovermenue = '';
var isbgesetzt ='';
//
 var Titel=new Array();
 Titel[0] = '';
 Titel[1] = 'punkt 1';
 Titel[2] = 'leistungen';
 Titel[3] = 'beispiele';
 Titel[4] = 'kontakt';
 Titel[5] = 'impressum';

// mouseover
function swappic(nr) {
 if(aktives_hovermenue != nr)
  {
	$('#topmenu').html('<img src="pics/m'+nr+'.jpg" alt="" height="99" width="602" usemap="#m0" border="0" />');
	aktives_hovermenue = nr;
  }
}
// mouseout
function swappicoff() {
if(aktives_hovermenue != '' ) {
  if(aktives_hovermenue != aktives_menue) {
    $('#topmenu').html('<img src="pics/m'+aktives_menue+'.jpg" alt="" height="99" width="602" usemap="#m0" border="0" />');
    // document.getElementById('topmenu').style.backgroundImage='url("/pics/m'+aktives_menue+'.jpg")';
     //document.getElementById('topmenu').style.color= '#829E45';
  }
}
aktives_hovermenue = '';
}
// mouseclick
function showinh(seite,mid) {
  // menupunkt setzen
  if(aktives_menue){
  	$('#'+aktives_menue).removeClass('hmenutop_active').addClass('hmenutop');
  }
  $('#'+mid).removeClass('hmenutop').addClass('hmenutop_active');
  aktives_menue = mid;
  //$('#m1p'+aktives_menue).html('');
  //$('#m1p'+nr).html('<img src="pics/roterpunktm.png" border="0" alt="o">');
  //aktives_menue = nr;
 // hier titel setzen
  //$('#toptitel').html(Titel[nr]);
 // hier inhalt setzen
 var ninhalt = function(antwort){$('#content').html(antwort);};
  $.get(encodeURI('/content/de/'+seite+'.html'),ninhalt,'html');
 // hier rechtes bild aendern
 /*$('#picr').fadeOut('fast',function() {
   $('#picr').html('<img src="pics/b'+nr+'.jpg" alt="" height="440" width="528" border="0" />');
   $('#picr').fadeIn('fast');
 });
*/

}
// inhalt db
function showinhdb(id,templ,mid) {
	// menupunkt setzen
  if(aktives_menue){
  	$('#'+aktives_menue).removeClass('hmenutop_active').addClass('hmenutop');
  }
  $('#'+mid).removeClass('hmenutop').addClass('hmenutop_active');
  aktives_menue = mid;
var ninhalt = function(antwort){$('#content').html(antwort)};
  $.get(encodeURI('/cgi-bin/bitcms/showcontent.pl?tid='+id+'&templ='+templ),ninhalt,'html');
}
// smo

