$(function() {
	//MARCAS
	$('.marcas').tabSwitch('create',{width: 590, height: 70});
	$('.navMarcas').click(function(e){
		$('.marcas').tabSwitch('moveStep',{step: parseInt($(this).attr("rel"))});
		e.preventDefault();
	});

	//SLIDE
	$("#slide").showcase({
		animation: { interval: 5000, type: "fade" },
		navigator: { 
			position: "bottom-right", 
			showNumber: true,
			css: {"margin-bottom": "5px", "margin-right": "15px"},
			item: {
				css: { width: "30px", height:"20px", "line-height": "20px", color: "#FFF", backgroundColor: "#F56948", border:"none", "-moz-border-radius": "0", "-webkit-border-radius": "0" },
				cssHover: {  color:"#F56948", backgroundColor: "#FFF", border:"none" },
				cssSelected: {  color:"#F56948", backgroundColor: "#FFF", border:"none" }
			}
		},
		titleBar: { enabled: false }
	});
});

//ATENDIMENTO ONLINE
janela = null;
function atendimento() {
	if ((janela != null) && (!janela.closed))
		janela.location.replace('http://www.kicharmemodas.com.br/atendimento');
	else janela = window.open('http://www.kicharmemodas.com.br/atendimento','atendimento','width=350,height=530,top=200,left=200');
	janela.focus();
}
