$(document).ready(function() {
	
	$('#h img').mouseover(function() {
		$(this).attr('src', '/images/logo-hover.png');
	});
	$('#h img').mouseout(function() {
		$(this).attr('src', '/images/logo.png');
	});
	
	$('#m .refm').mouseover(function() {
		var c = $(this).attr('class').substr(9, 1);
		$('#fi .refm' + c).addClass('hover');
	});
	$('#m .refm').mouseout(function() {
		$('#fi .refm').removeClass('hover');
	});
	
	$('#powered-by').append('<li><!-- Host Europe GmbH - Partnerprogramm - Beginn -->' +
	'<a href="http://affiliate.hosteurope.de/click.php/xKl4Zmvdo1OpK4IfxubYwvLOv0kga_g1EqnZ9RlpJMM," title="hosted by Host Europe" target="_self">hosted by Host Europe</a><img src="http://affiliate.hosteurope.de/view.php/xKl4Zmvdo1OpK4IfxubYwvLOv0kga_g1EqnZ9RlpJMM," width="0" height="0" alt="" border="0" />' +
	'<!-- Host Europe GmbH - Partnerprogramm - Ende --></li>');
	
	
});
