/***
 * Fonctions javascript de la home
***/
// Vars --------------------------//
urls = Array(
	"rencontre.love.easyflirt.com",
	"rencontre.sexy.easyflirt.com",
	"rencontre.gay.easyflirt.com"
);

//--------------------------------//
// Sur la home, affiche les bloks des listes :
function swapListItem( id )
{
	if( document.getElementById( id ).style.display == '' )
	{
		document.getElementById( id ).style.display = 'none';
	}
	else
	{
		document.getElementById( id ).style.display = '';
	}
}

// Formulaires --------------------//
tzosob = new Date();
var tzos = ( tzosob.getTimezoneOffset()/60 );
function chAction(formId, obj)
{
	if( obj.tagName == 'INPUT' )
	{
		if( !obj.checked ) return;
	}
	else if( !obj.value.length ) return;
	
	document.getElementById( formId ).action = 'http://' + urls[obj.value];
}
//----------------------------------//
