// funcoes que depende do jquery.js
$(function() {

	// fix background imagem on ie
	try {
	  document.execCommand('BackgroundImageCache', false, true);
	} catch(e) {}
	
	$("div.fancybox a, a.fancy, area.group").fancybox({
		'hideOnContentClick':false ,
		'overlayOpacity':'0.6'
	});
	
	// menu de produtos com abas
	$('#dTabs').each(function(){ $(this).tabs() });

});
