/*
 * @author rur@bauer.de
 * @2009-10-23
 * 
 * Layout Modifications for BAUER Standard Template
 * 
 * 
 * 
 */

this.submenu = function() {

	// add class to submenu if it has active child elements

	// If level1 element is active.
	//$("ul.vlist").children("li.active").addClass("active-child");

	// If there are active elements in deeper levels
	//$("#submenu ul.vlist li:has(.active) a:first").css("background-color", "#cccccc")
	//												.hover(function () {
	//													$(this).css("background-color", "#f8f8f8");
	//													}, function () {
	//														$(this).css("background-color", "#cccccc");
	//													});

	
	

};

/*
 * Here the scripts are called when the document is ready
 * 
 * 
 * 
 */

$(document).ready(function() {
	submenu();

});
