function abreTelaSearch() {
	$('#telaSearch').fadeIn('fast');
}

function fechaTelaSearch() {
	$('#telaSearch').fadeOut('fast');
}

function abreTelaLogin() {
	$('#telaLogin').fadeIn('fast');
}

function fechaTelaLogin() {
	$('#telaLogin').fadeOut('fast');
}

function abreTelaLoginMeusPedidos() {
	$('#telaLoginMeusPedidos').fadeIn('fast');
}

function fechaTelaLoginMeusPedidos() {
	$('#telaLoginMeusPedidos').fadeOut('fast');
}

function abreTelaLoginCarrinho() {
	$('#telaLoginCarrinho').fadeIn('fast');
	$('#stepSacola').css('background', 'url(../img/00sacolaDeCompras_c.png)');
	$('#stepIdentificacao').css('background', 'url(../img/01identificacao_b.png)');
}

function fechaTelaLoginCarrinho() {
	$('#stepSacola').css('background', 'url(../img/00sacolaDeCompras_b.png)');
	$('#stepIdentificacao').css('background', 'url(../img/01identificacao_a.png)');
	$('#telaLoginCarrinho').fadeOut('fast');
}

$(document).ready(function(){
	$('#SearchSearch').click(function() {
		$('#SearchSearch').val('');
	});
	
	$("#telaSearch").click(function(){
		$(this).fadeOut("fast");
	}).children().click(function(e) {
	  e.stopPropagation();
	});
	
	$("#telaLogin").click(function(){
		$(this).fadeOut("fast");
	}).children().click(function(e) {
	  e.stopPropagation();
	});
	
	$("#telaLoginCarrinho").click(function(){
		fechaTelaLoginCarrinho();
	}).children().click(function(e) {
	  e.stopPropagation();
	});
	$("#telaLoginMeusPedidos").click(function(){
		fechaTelaLoginMeusPedidos();
	}).children().click(function(e) {
	  e.stopPropagation();
	});
});
