// JavaScript Document

$(document).ready(function() {
	$('.scrollbox614').jScrollPane({scrollbarWidth:8,showArrows: true});
	$('.scrollbox614').show();
	$('.scrollbox306').jScrollPane({scrollbarWidth:8,showArrows: true});
	$('.scrollbox306').show();
	
	
	$("a").each(function(){
		var oldcolor = $(this).css("color");					 
		$(this).hover(
			function (){
				$(this).css({'color':'#f7941d'});
			},
			function (){
				$(this).css({'color':oldcolor});
			}		 
		);
	});

	
});



function changelang(){
		 $.post("ajax/changelang.php",
		function(data){
				window.location.reload();
		 });	
	return false;
}

