function init()
{
	$('#dinascope-logo').bind('mouseover', function() {
		$(this).attr("src", $(this).attr("src").replace("logo", "logo_up"));
	});
	$('#dinascope-logo').bind('mouseout', function() {
		$(this).attr("src", $(this).attr("src").replace("logo_up", "logo"));
	});
	$('#magyar').find('a').bind('click', function() {
		if (!$(this).attr('id')) {
			$('#english').find('a').removeAttr('id');
			$('.engtext').slideUp(300, function() {
				$('#magyar').find('a').attr('id', 'selected');
				$('.huntext').slideDown(300);
				var url = $("#dinascope").find("a").attr('href');
				$("#dinascope").find("a").attr('href', url.replace('eng', 'hun'))
			});
		}
	});
	$('#english').find('a').bind('click', function() {
		if (!$(this).attr('id')) {
			$('#magyar').find('a').removeAttr('id');
			$('.huntext').slideUp(300, function() {
				$('#english').find('a').attr('id', 'selected');
				$('.engtext').slideDown(300);
				var url = $("#dinascope").find("a").attr('href');
				$("#dinascope").find("a").attr('href', url.replace('hun', 'eng'))
			});
		}
	});
}
$(document).ready(function() {
	init();
});
