//JS Object : update the cart by ajax actions
var ajaxAccount = {
	
	//override every button in the page in relation to the cart
	overrideButtonsInThePage : function(){
	
		$('div#account_block').hover(function(){
			$('#account_blockcontent').show(1000);
		},function(){
			
		});
		
		$('div#account_blockcontent').hover(function(){
		},function(){
			$('#account_blockcontent').hide(600);
		});
		
	}
	
}


//when document is loaded...
$(document).ready(function(){
	ajaxAccount.overrideButtonsInThePage();
});