/*
Script du site officiel de {elseIf}
Copyright 2010 Matteo C aka Geek Arlier
*/

function show_content(to_show, to_hide1, to_hide2) //Affiche le contenu demandé
{
	if($('#'+to_hide1).css('display') != 'none')		
		$('#'+to_hide1).hide()
		
	if($('#'+to_hide2).css('display') != 'none')		
		$('#'+to_hide2).hide()
	
	if($('#'+to_show).css('display') == 'none')
	{
		$('#'+to_show).fadeIn(500,function(){});
		$.scrollToElement( $('#'+to_show) );
	}
	else
		$('#'+to_show).fadeOut(500,function(){});

}

function display_screenshot(img_url) //Affiche un screenshot
{
	//Url autorisées 
	if(img_url == 'img/MnemoKey_sceen_MAIN.png' || img_url == 'img/MnemoKey_sceen_MDP.png' || img_url == 'img/MnemoKey_sceen_CRYPT.png')
	{
		$('#screenshot_display').hide();
		$('#screenshot_display').html('<img src="'+img_url+'" alt="screenshot"/>');
		$('#screenshot_display').fadeIn(500, function(){});
		
		$.scrollToElement( $('#screenshot_display') );
	}
	else
		alert('Modifier une page avec Firebug pour faire planter un script, c\'est mal ;-)');
}
