$(document).ready(function(){
	
	// 	lightbox aktivieren
	$('.lightbox').lightbox();
	
	$(".menu li").click(function(){
		window.location=$(this).find("a").attr("href"); return false;
	});
	
	$('#text-links').hover(function() {
		// alert($(this).attr('src').replace('out','over'));
		$(this).attr('src', $(this).attr('src').replace('-out','-over'));
	},function() {
		$(this).attr('src', $(this).attr('src').replace('-over','-out'));
	});
	
	// dropdown menu
	var css = ['child-hover1', 'child-hover2'];
	$('#multi-ddm').dropDownMenu({timer: 500, levels: css});
	
	// style switcher (für schriftgröße)
	$('#switcher').switcher();
	
	
	// $.each($.browser, function(i, val) {
	// 	$("<div>" + i + " : <span>" + val + "</span>").appendTo($('#body_main_content'));
	// });
	
	// if($.browser.msie && $.browser.version.substr(0,3)==6) {
	// 	alert('IE6');
	// }
});
