// JavaScript Document
// Atendimento Online
function openWindow(url, name)
{ var winWidth = 488;
  var winHeight = 450;
  var winTop = parseInt((screen.availHeight - winHeight) / 2);
  var winLeft = parseInt((screen.availWidth - winWidth) / 2);
     
  popupWin = window.open(url,name,"width=" + winWidth + ",height=" + winHeight + ",top=" + winTop + ",left=" + winLeft + ",resizable=no,scrollbars=no,statusbar=no");
  if (popupWin.opener == null) popupWin.opener = self;
}

//circle//
$(document).ready(function(){
	$('.boxlangru').cycle({
		fx:      'scrollDown', 
		speedIn:  2000, 
		speedOut: 500, 
		easeIn:  'bounceout', 
		easeOut: 'backin',
		timeout:   8000
	});
	$('#flash div').biggerlink();
	$(".atendimento").click (function(){
		window.open('http://200.225.91.178/lopesbauer545/chat4/cliente/frm_login.asp?IDArea=1&sel=HomePage','remote', 'width=488, height=450, scrolling=no');
	});
});





