//SLIDESHOW

var picture = 0;
function getpicture()
{
	var images = new Array('rahmen_1.jpg','rahmen_2.jpg','rahmen_3.jpg','rahmen_4.jpg');
	document.getElementById('slide').src='gfx/sites/home/slideshow/'+images[picture];
	picture=picture+1;
	if(picture > 3)
		picture = 0;
}

function slideshow()
{
	setInterval('getpicture()',1700);
}

// POPUP FÜR BAZARVORSCHAU & BERICHTPIC

function popUp(orientation, pic)
{
	if(orientation == 'bericht')
	{
		var width = '868';
		var height = '676';
		var imgWidth = '768';
		var imgHeight = '576';
		var path = 'gfx/sites/berichte/';
	}
	else
	{
		var path = 'gfx/sites/bazar/';
		if(orientation == 'landscape')
		{
			var width = '500';
			var height = '367';
			var imgWidth = '400';
			var imgHeight = '267';
		}
		else
		{
			var width = '367';
			var height = '500';
			var imgWidth = '267';
			var imgHeight = '400';
		}
	}
	var x = screen.availWidth/2-width/2;
	var y = screen.availHeight/2-height/2;
	var popupWindow = window.open('','','width='+width+',height='+height+',left='+x+',top='+y+',screenX='+x+',screenY='+y+'status=no,scrollbars=no,resizable=no');
	popupWindow.document.writeln('<html><head><title>Grossansicht</title></head>');
	popupWindow.document.writeln('<body style="margin:0; padding:0;"><table width="'+width+'" height="'+height+'" cellspacing="0" cellpadding="0" border="0">');
	popupWindow.document.writeln('<tr><td valign="middle" style="text-align:center;"><img src="'+path+pic+'" width="'+imgWidth+'" height="'+imgHeight+'" style="padding:1px; border:1px solid #000000;" alt="Bild" />');
	popupWindow.document.writeln('</td></tr></table></body></html>');
	popupWindow.document.close();
}

// ICON / LINKAUSTAUSCHFUNCTIONS

function Austausch(picID, linkID, tauschicon, color, txtDec)
{
	document.getElementById(picID).src=tauschicon;
	document.getElementById(linkID).style.color=color;
	document.getElementById(linkID).style.textDecoration=txtDec;
}

function MouseOver(picID,linkID,section)
{
	var tauschicon = null;
	var color = '#FFFF00';
	var txtDec = 'underline';
	switch(section)
	{
		case "galerie":
			tauschicon = 'gfx/sites/gallery/icons/folder_gelb.jpg';
		break;
		
		case "berichte":
			tauschicon = 'gfx/sites/berichte/pdf_icon2_over.jpg';
		break;
	}
	
	Austausch(picID, linkID, tauschicon, color, txtDec);
}

function MouseOut(picID,linkID,section)
{
	var tauschicon = 0;
	var color = '#FFFFFF';
	var txtDec = 'none';
	switch(section)
	{
		case "galerie":
			tauschicon = 'gfx/sites/gallery/icons/folder_white.jpg';
		break;
		
		case "berichte":
			tauschicon = 'gfx/sites/berichte/pdf_icon2.jpg';
		break;
	}
	
	Austausch(picID, linkID, tauschicon, color, txtDec);
}

// GBOOK SMILIES EINFÜGEN

function addSmiley(Smiley)
{
	var id = 'msg'; // ID TEXTAREA
	var message = document.getElementById(id).value;
	var newMessage = message + Smiley;
	document.getElementById(id).value = newMessage;
	document.getElementById(id).focus();
}