﻿$(function() {
	$.blockUI.defaults = { 
		message:  '<h1>AGUARDE</h1><div style="text-align:center"><img src="img/loading.gif" /></div>', 
		overlayCSS:  {
			backgroundColor: '#000',
			opacity:	  	 0.2,
		},
		css: { 
			width:          '400px', 
			textAlign:      'left', 
			color:          '#666', 
			border:         'solid 5px #6EA7D1', 
			backgroundColor:'#FFF', 
			left:  			($(window).width() - 400) /2 + 'px',
			top: 			'35%',
			'-webkit-border-radius': '10px', 
			'-moz-border-radius':    '10px',
		}, 			 
		showOverlay: true,
		fadeIn:  300, 
		fadeOut:  300
	}; 
});

