$(document).ready(function() {	
	$(".menu_item a").mouseover(function() {
		$(this).parent().stop().animate({backgroundPosition: "0% 100%"},550);
		$(this).stop().animate({color:"#000000"},350);
	});
	$(".menu_item a").mouseout(function() {
		$(this).parent().stop().animate({backgroundPosition: "0% 0%"},550);
		$(this).stop().animate({color:"#ffffff"},350);
	});
	
	$("#menu a").click(function(event) {
		var curpos = $("#text_block").scrollLeft();
		var gotopos = $(this).attr("href") + "page";
		$("#menu div").removeClass();
		$("#menu div").addClass("menu_item");
		if ($.browser.msie) $("#text_block").animate({scrollLeft:(($(gotopos).index()) * 884)},350);
		else if ($.browser.safari) $("#text_block").animate({scrollLeft:(($(gotopos).index()) * 884)},350);
		else $("#text_block").animate({scrollLeft:(($(gotopos).index()) * 888)},350);
		$(this).parent().removeClass("menu_item").addClass("menu_item_selected");
		event.preventDefault();
	});
	
	$("#lang a").mouseover(function() {
		$(this).css({'background-color':'#ffffff','color':'#000000'});
	});
	
	$("#lang a").mouseout(function() {
		$(this).css({'background-color':'transparent','color':'#ffffff'});
	});
});
