$(document).ready(function()
{
	/* <---------- jQuery Elemente zur Objektdarstellung ----------> */
	
		/* Objektliste - jede zweite Zeile grau markieren - beginnend bei Zeile 1 */
		$("#objektliste tr:odd").css("background-color", "#F4F4F4");
		
		/* HTML-Attribute via jQuery für die Tabelle der Objektdetails einfügen */
		$("#objektdetails table").attr("width", "90%");
		$("#objektdetails table").attr("height", "100%");
		$("#objektdetails table").attr("cellpadding", "0");
		$("#objektdetails table").attr("cellspacing", "1");
		
		/* Pfeile vor die Tabelle mit den Objektdetails setzen */
		$("#objektdetails table tr").each(function()
		{
			//$(this).css("color", "#717171");
			//$(this).css("background-color", "#F1F1F1");
			$(this, 'td:first').prepend("<td width='20' style='height: 20px; background-image: url(images/pfeil_bg.gif);'></td>");
		});
	
	
	/* <---------- jQuery Code zu Dokumentation ----------> */
	
		$("#doku_angaben table").css("width", "100%");
		$("#doku_angaben table").each(function() 
		{
			$(this).find('tr').attr("bgcolor", "#F0F0F0");
			$(this).find('tr td:even').attr("width", "150");
			$(this).find('tr td:odd').attr("colspan", "2");
			$(this).find('tr td').addClass("datenbank");
			$(this).find('tr td').attr("height", "20", "align", "center");
		});
		
		
	/* <---------- Sektion OPUS Marktforschung - Methode || Einblenden der Erklärungen zur Grafik ----------> */
	
		/* Umsetzung ein- und ausblenden */
		$("#umsetzung").mouseover(function()
		{
			$("#titel").css("display", "block");
			$("#titel").css("display", "block");
			$("#text").css("display", "block");
			$("#titel").html("<table width='100%'><tr><td class='balken_innen' width='100%'></td></tr></table>Eine Idee ist noch kein Markterfolg <br /> (Dr. Georg H. Endress)");
			$("#text").html("Kreative Ideen haben es schwer sich durchzusetzen - Der OPUS Prozess unterstützt die Dynamik bis zur Einführung. <table width='100%'><tr><td class='balken_innen' width=#100%'></td></tr></table>");
		});
		$("#umsetzung").mouseout(function()
		{
			$("#text").css("display", "none");
			$("#titel").css("display", "none");
		});
		
		/* Entwicklung ein- und ausblenden */
		$("#entwicklung").mouseover(function()
		{
			$("#titel").css("display", "block");
			$("#titel").css("display", "block");
			$("#text").css("display", "block");
			$("#titel").html("<table width='100%'><tr><td class='balken_innen' width='100%'></td></tr></table>Nichts ist unmöglich...");
			$("#text").html("Die Bedürfnisanalyse aus den Painstormings ist eine kreative Herausforderung, die wir in Krea-Seminars durch neuartige, innovative und besondere Lösungen beantworten. <table width='100%'><tr><td class='balken_innen' width=#100%'></td></tr></table>");
		});
		$("#entwicklung").mouseout(function()
		{
			$("#text").css("display", "none");
			$("#titel").css("display", "none");
		});
		
		/* Analyse ein- und ausblenden */
		$("#analyse").mouseover(function()
		{
			$("#titel").css("display", "block");
			$("#titel").css("display", "block");
			$("#text").css("display", "block");
			$("#titel").html("<table width='100%'><tr><td class='balken_innen' width='100%'></td></tr></table>Der Anfang bestimmt das Ende!");
			$("#text").html("Das Projektteam einigt sich über die Projekt-Ziele und Menchengruppen (Kunden, Mitarbeiter, Investoren), für welche neue Leistungen entwickelt werden sollen. Diese Gruppen werden in Painstormings mittels OPUS-Interview-Box befragt.<table width='100%'><tr><td class='balken_innen' width=#100%'></td></tr></table>");
		});
		$("#analyse").mouseout(function()
		{
			$("#text").css("display", "none");
			$("#titel").css("display", "none");
		});
});



/*
TRASH

.next("td:first")


.prepend("<td width='20' style='background-image:url(images/pfeil_bg.gif);'></td>");

<table width='100%'><tr><td class='balken_innen' width=#100%'></td></tr></table>"
*/
