jQuery(window).bind('load', function() {
	$('#federal-states li a').hover(
		function(){
			SendDataToFlashMovie($(this).parent().attr('id'));
			hover('a','#'+$(this).parent().attr('id'),'hover');
		},function(){
			SendDataToFlashMovie('');
			hover('a','#'+$(this).parent().attr('id'),'');			
	});
});  


function hover(element, id, status) {
	$('#federal-states li a').css('text-decoration','none');
	$(id).css('text-decoration','underline');
}
