// JavaScript Document


$(document).ready(function(){
						   
$("div.infos table tr td:even").addClass("bolder");	
$("#Datendetails table tr td:even").addClass("bolder");	
$("div.infos table tr:odd").addClass("backgroundwhite");
$("#Datendetails table tr:odd").addClass("backgroundwhite");
$("#verwaltg div.single_objekt h2").addClass("border_bottom");
$("table#searchbox tr td:even").addClass("td_smaller");
$("table#searchbox_angebot tr td:even").addClass("td_smaller");
$("table#angebot_anfordern_sofortanfrage tr td:even").addClass("td_smaller");


	
	$("#flyout li").each(function(){
		$(this).children("ul").css("display","none");
		$(this).mouseover(function(){
			$(this).children("ul").css("display","block");
			$(this).children("ul").css("position","relative");
			$(this).children("ul").css("z-index","100");
		});
		$(this).mouseout(function(){
			$(this).children("ul").css("display","none");
		});
	});
	
	
	 $('#slideshowsmall').innerfade({ 		//animationtype: Type of animation 'fade' or 'slide' (Default: 'fade'),
			speed: 8000, 					//speed: Fadingspeed in milliseconds or keywords (slow, normal or fast)(Default: 'normal'), 
			timeout: 8000, 					//timeout: Time between the fades in milliseconds (Default: '2000'), 
			type: 'sequence',				//type: Type of slideshow: 'sequence', 'random' or 'random_start' (Default: 'sequence'),  
			containerheight: '160px' 		//containerheight: Height of the containing element in any css-height-value (Default: 'auto')  
	});	
	

});


