/*** 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 ){
               $('#mon_compte_cache').stop(true,true).fadeIn("800");
       
        details_block_account_visible = true;
    }
}
bmap_ferme_account_details = function(){
    if ( details_block_account_visible &&
         block_focuded != 'mon_compte_cache' &&
         block_focuded != 'header_user_montre' ){
   
            $('#mon_compte_cache').stop(true,true).fadeOut('800');
            details_block_account_visible = false;
       
    }
}
onmouseout_ferme = function( Elt ){
	if ( !focus_is_disabled ) focus_block();
	window.setTimeout( function(){
		if ( block_focuded != 'mon_compte_cache' && 
			 block_focuded != 'header_user_montre' ){ 
			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();
	}
});

