function dom_init() {
	
	// get things done when DOM is ready
	
	// Menu Hover Effect 
	$("#menu li:not(.first) a:not(.activeMenu)").hover(function() {  
	$(this).stop().animate({ color: "#1B76F0" }, 600);  
	},function() {  
	$(this).stop().animate({ color: "#ffffff" }, 400);  
        }); 
	
	$("#menu li.first a:not(.activeMenu)").hover(function() {  
	$(this).stop().animate({ backgroundColor: "#1B76F0" }, 600);  
	},function() {  
	$(this).stop().animate({ backgroundColor: "#ffffff" }, 400);  
        });
        
        // at Traget Blank zu Links
        $('#menu a[href=index.php?id=286]').attr('target', '_blank'); 
        

	// Rounded Corner for Images
	if (!$.browser.msie) {
	// $(".csc-textpic-imagewrap").corner("5px");
	}
							   
							   

}


