$(document).ready(function() {
	
	// fim dos arquivos utilizados pelo jQuery lightBox plugin
	// Ativando o jQuery lightBox plugin
	$('#branch_office a').lightBox();
	$('#branch_office a').lightBox({
		overlayBgColor: '#000',
		overlayOpacity: 0.6,
		txtImage: '',
		txtOf: '/'
	});

	$('.branch_office a').fadeTo(1, 1).hover(
		function(){
			$(this).fadeTo(80, 0.6);
		},
		function() {
			$(this).fadeTo(80, 1);
		}
	);
	
	// preload img
	$.fn.preload = function() {
	    this.each(function(){
	        $('<img/>')[0].src = this;
	    });
	}

	$([
		// business page btn
//		'business/img/btn_biz_edms_contact.gif', 'business/img/btn_biz_it_contact.gif', 'business/img/btn_biz_newbiz_contact.gif', 'business/img/btn_biz_sc_contact.gif', 'business/img/img_side_menu.gif', 'business/img/biztop4business.gif'
	
	]).preload();

});