/*** VARIABLES ***/
var details_block_account_visible = false;
var block_focuded = '';
var focus_is_disabled = false;

/*** FONCTIONS ***/
focus_block = function( Elt ){
	if ( !Elt ) block_focuded='';
	else block_focuded = Elt.id;
}

bmap_ouvre_account_details = function(){
	if ( !details_block_account_visible ){
		$('#blockmyaccountdeluxe_details').slideDown();
		details_block_account_visible = true;
	}
}
bmap_ferme_account_details = function(){
	if ( details_block_account_visible && 
		 block_focuded != 'blockmyaccountdeluxe_details' && 
		 block_focuded != 'blockmyaccountdeluxe_account' ){ 
		window.setTimeout( function(){
			$('#blockmyaccountdeluxe_details').slideUp('fast');
			details_block_account_visible = false;
		},100);
	}
}
onmouseout_ferme = function( Elt ){
	if ( !focus_is_disabled ) focus_block();
	window.setTimeout( function(){
		if ( block_focuded != 'blockmyaccountdeluxe_details' && 
			 block_focuded != 'blockmyaccountdeluxe_account' ){ 
			bmap_ferme_account_details();
		}
	},100);
}
LoginAccount = function(){
	messageImage = '{/literal}{$folder}css/{$style}/ajax-loader.gif{literal}';
	messageLoading = '<table style="width:100%; height:100%"><tr><td align="center" valign="middle"><img src="'+messageImage+'" align="absmiddle" />&nbsp;Identification en cours</td></tr></table>';
	$('#blockmyaccountdeluxe_details').html(messageLoading);
}
$(document).click( function(){
	if ( !focus_is_disabled ) {
		focus_block();
		bmap_ferme_account_details();
	}
});

