window.onerror = function (desc,page,line,chr) {
	alert('JavaScript - Erro encontrado! \n'
		+'\nDescrição do erro:	\t'+desc
		+'\nEndereço da página:	\t'+page
		+'\nLinha número:		\t'+line
	);
};
	
jQuery(document).ready(function($){

	var body_height = $('body').height();
	var body_width = $('body').width();

	Produtos._init();
	
	$('.btn').replaceButtons();
	$('.color').replaceColors();
	
	$(".equalHeights").equalHeights(true);
	$(".vAlignM").vAlign('middle');
	$(".vAlignB").vAlign('bottom');
	
	$('.abrir, .fechar', '#chamada').bind('click', function(e){
		if (!e) var e = window.event;
		e.cancelBubble = true;
		if (e.stopPropagation) e.stopPropagation();								 

		var $this = $(this);
		var parent = $this.parent();
		var texto = $('p', parent);

		$(this).siblings('p').slideToggle(300).end().toggleClass('abrir').attr('title', ( $(this).hasClass('abrir') ) ? 'Abrir' : 'Fechar');
		//$this.toggleClass('abrir');	
	
		return false;
	}).show();
	
});
