
$(document).ready(init);

function init(){
	
	// ie6
	//if($.browser.msie && $.browser.version < 7){ }
	

	
	$('#indexLogoDiv img').hover(function () {
        this.src = 'img/logo_rot.png';
    }, function () {
        this.src = 'img/logo_weiss.png';
    });


}

function xyz(){
	$('.xyz').fadeOut('fast', function() {	});
}



