/*
 *   Created by Bernd Lutz (http://berndlutz.com) by order of Carolin Tröppner.
 *   (c) Copyright by Carolin Tröppner. All rights reserved.
 *
 *   last modified: 2009-11-30
 */


$(document).ready(function()
{
	// Runde Ecken im IE und Opera per Bild
	
	if ( jQuery.browser.opera || jQuery.browser.msie )
	{
		$("ul.subnav").wrap('<div id="subnav-image-corners"></div>');
		$("form").attr("id", "form-image-corners");
		$("input[type=submit]").replaceWith('<input type="image" src="/css/img/submit.gif" alt="senden" />');
	}
	
	// Bullets der <ol>
	
	$("ol li").each(function(i)
	{
		$(this).prepend("<span class=\"bullet\">"+(i+1)+"</span>");
	});
	
	// Sprechblase "Home"
	
	$("#logo").after('<div id="bubble">Home</div>');
	
	$("#logo").mouseenter(function()
	{
		$("#bubble").fadeIn(500);
	});
	
	$("#logo").mouseleave(function()
	{
		$("#bubble").fadeOut(500);
	});
	
	// Untermenü
	
	$(".subnav li[class!=active] a").mouseenter(function()
	{
		$(this).animate({
			color: "#000",
			backgroundPosition: "193px .5em"
		}, 250);
	});
	
	$(".subnav li[class!=active] a").mouseleave(function()
	{
		$(this).animate({
			color: "#313131",
			backgroundPosition: "200px .5em"
		}, 250);
	});
});