jQuery(function($){
	//faz detecção do navegador.
	isIE7 = (navigator.appVersion.indexOf("MSIE 7.")==-1) ? false : true;
	
	//hacks gerais.
	$('#menu_usuario li:last-child a').css('border-right', '0');
	$('#shopping-cart-table tfoot tr td').css({
		'border-top':'1px solid #c1dad7 !important',
	 	'padding':'5px'
	 });
	 $('.customer-address-index #categorias').css('background-image', 'none')
	
	if($.browser.msie){
			$('#review-buttons-container').css({
			'display':'block',
			'width':'100px',
			'height':'50px'
		});
		
		$('#finish').remove()
		$('<input id="finish" type="button" class="awesome green" onclick="review.save();" value="Finalizar Compra" />').appendTo('#review-buttons-container');
		$('#finish').css({
			'position':'absolute',
			'top':'0',
			'right':'0', 
			'height':'33px',
			'width':'140px',
			'border':'none'
		});
	}
	
	if (isIE7) {
 		// IE 7, mozilla, safari, opera 9		
		$('#menu_categorias li:nth-child(2)').css('margin-top','-4px');
		$('#menu_categorias li:nth-child(3)').css('margin-top','-4px');
		$('#menu_categorias li:nth-child(4)').css({
			'margin-top':'-4px',
			'height':'42px'
		});
		
		
		$('#menu_categorias li:nth-child(5)').css({
			'margin-top':'-4px', 
			'height':'48px'
		});
		
	}//fim dos hacks de ie7
		
	//faz efeito de fade no menu categorias
	$('#menu_categorias li').hover(function(){
		$(this).addClass('menu_hover');	
	}, function(){
		$(this).removeClass('menu_hover');
	});
	
	//esconde o aviso de campo vazio do newsletter
	$('#news_letter_enviar').click(function(e){
		e.preventDefault();
		var campo = $('#newsletter').val();
		if(campo == ""){
			alert('Digite o seu endereço de email para pode assinar nossa newsletter');
			return false;
		}	
	});
});
