//**Exibe o carrinho de compras no emnu
$(document).ready(function(){
 var OnPanel = false;
 var opened = false;
 var productsTitles;
 //Efetua o calculo do endereço para poder exibir os produtos colocados no carrinho
 var loc = $(location).attr('href')
 var locArray = loc.split('/');
 var isSession = loc.split('=');
 var index = locArray.pop();
 var request ="";
 var count;
 
 for(count=0; count<locArray.length; count++){
	if(locArray[count] == "online.bb2.co.jp"){
		break;
	}
 }
//Endereço efetivo
 if(index == 'home'){
    request = "/";
    $('#goto_cart a').attr('href','/cart/carrinho');
 }else{
	   for(var i=0; i<locArray.length - parseInt(count+1); i++){
        	request += "../";
		}	
       }
 var toCheckout = $("#user_session_id").val();
 $('#cart').hover(function(){
	//Exibe o painel flutuante do carrinhi
	$('#shopping_bar #nav #cart').css('background', 'url('+request+'/images/shadow-text.png) no-repeat');//Highlight
	$('#shopping_bar #nav #cart').css('background-position', '1px 6px');
	$('#float_panel_pointer').show();
	$('#float_panel_loader').show();	
	$('#float_panel').show(); 
	
	var where = '';
	if(isSession[1] != null && isSession[1] != ''){ 
		if(locArray[4]=="register")
		where = 'cart/carrinho_sessao/?sid='+isSession[1];	
		else
		where = 'cart/carrinho_sessao/?session='+isSession[1];
	}else{
		where = 'cart/carrinho'; 
	}    
	//$('#cart a').css('color', '#3a9cea');
	if(!opened)//Se o painel ainda não estiver aberto efetua uma requisicao por ajax a pagina de carrinho
	$.get(request+where, function(data){  
		productsTitles = new Array();
		productsImage  = new Array();
				$('#items_list').empty();   
		//Com os dados obtidos monta o carrinho com a imagem do produto e o nome  
		$(data).find('#cart_list li').each(function(i){
			productsTitles[i] = $(this).find('h2');
			productsImage[i]  = $(this).find('img').attr('src');
			$("#items_list").append("<li style='display: block; background: #fff; border-bottom: 1px solid #cacaca; height:55px'> <div style='float: left'><img src="+productsImage[i]+" width=55px height=55px> </div><div style='width: 150px; height: 20px; float: left; margin: 18px 0 0 5px; text-align: left'>"+productsTitles[i].html()+"</div></li><div id='clear_both' style='clear:both;'></div>");
		});
		if(productsTitles.length == 0 ){
			$('#items_list').append("<li style='display: block; background: #fff; border-bottom: 1px solid #cacaca; height:55px'>N&atilde;o h&aacute; itens no seu carrinho</li>");
			$('#goto_check').empty();
		}else{                                                                                                                                                                                                                  // <a href="+request+"cart/checkout'
		      if(locArray[0] == 'https:'){  
			                                                                                                                                                                                                                // <a href="+request+"cart/checkout'
		      $('#goto_check').append("<div id='checkout' style='height: 30px'><div style='background:url("+request+"/images/button_cart.png) no-repeat; height: 25px; width: 125px; margin: 10px 0 0 50px'><a href='https://store.bb2.co.jp/cart/checkout/?session="+where+"' style='display: block; position: absolute; color: #fff; text-decoration: none; width: 100px; height 25px; padding: 3px 0px 0px 20px'>Fechar Pedido</a></div></div>");
		      }else{  
			 
			   $('#goto_check').append("<div id='checkout' style='height: 30px'><div style='background:url("+request+"/images/button_cart.png) no-repeat; height: 25px; width: 125px; margin: 10px 0 0 50px'><a href='https://store.bb2.co.jp/cart/checkout/?session="+toCheckout+"' style='display: block; position: absolute; color: #fff; text-decoration: none; width: 100px; height 25px; padding: 3px 0px 0px 20px'>Fechar Pedido</a></div></div>"); 
		     }
		     }
		$('#tocart').remove();
		$('#goto_cart').append("<a id='tocart' href='"+request+"/cart/carrinho'>Ver Carrinho</a>");
		opened = true;
		$('#float_panel_loader').hide();	
	});
	

	},function(){
		OnPanel = false;
		HidePanel();
		return false;
 });
	
 //Fecha o painel se o usuario mover o cursor fora do painel e mative-lo fora por mais de meio segundo	
 $('#float_panel').hover(function(){
		OnPanel = true;
	},function(){
		OnPanel = false;
		HidePanel();
 });
 //Caso o usuario mova o cursor para fora do painel apos 500 ms o painel se fecha
 function HidePanel(){
	setTimeout(function(){
		  		if(!OnPanel){//Esconde o menu carrinho
			      $('#float_panel_pointer').hide();	
			$('#float_panel_loader').hide();
		  		  $('#float_panel').hide();
				  $('#shopping_bar #nav #cart').css('background', 'url('+request+'/images/cart.png) no-repeat');
				  $('#shopping_bar #nav #cart').css('background-position', '1px 6px');
				  //$('#shopping_bar #nav #cart a').css('color', '#333');
		  		  opened = false;
		  		  $('#items_list').empty();
				  $('#goto_check').empty();
		  	  }
		  },500);
	return false;
  }	
		

});
