function az_popupWindow(url) {
	window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}

jQuery(document).ready(function($) {	
	$('.az-template-button, .az-template-submit').hover(
	  function () {
		$(this).addClass('az-button-hover');
	  }, 
	  function () {
		$(this).removeClass('az-button-hover');
	  }
	).mousedown(function() {
		$(this).addClass('az-button-push');
	}).mouseup(function() {
		$(this).removeClass('az-button-push');
		$(this).addClass('az-button-hover');
	});
	
	if ( $.browser.msie ) {
	  if(parseInt($.browser.version) == 7) {
		  $('.az_login_button button').height(20);
	  }
	}
	
	$('#az_mainmenu').az_dropDownMenu({timer: 800, duration: 300});
});
