/*jQuery(document).ready(function(){

	jQuery('#flags').hide();
	jQuery('#flash').css("display","block");

	jQuery('a#show-flags').click(function() {
		$('#flags').slideToggle(250);
		return false;
	});
	
	jQuery('#flags').mouseout(function() {
		flagTimer = setTimeout(hideFlags,2000);
	});	
	
	jQuery('#flag-en').mouseover(function() {
		if(flagTimer) {
			clearTimeout(flagTimer);
			flagTimer = null;
		}
	});

	jQuery('#flag-fr').mouseover(function() {
		if(flagTimer) {
			clearTimeout(flagTimer);
			flagTimer = null;
		}
	});

});	
	
function hideFlags() {
	jQuery('#flags').slideUp('fast');
}*/
