		$(document).ready(function() {

			$('#menu').corner('top');

			$('ul#professores > li > a').mouseover(function() {
					$('#mask').css('display','block');
				$('#mask').attr('src', 'imagens/' + $(this).parent().attr('id') + '.png');
				//$('#mask').fadeIn();
				return false;
			});
			$('a').mouseout(function() {
				//$('#mask').fadeOut();
					$('#mask').attr('src', '');
					$('#mask').css('display','none');
				return false;
			});

			$('#m2').colorbox({iframe:true, scalePhotos: false, scrolling: true, width:"1000px", height:"600px"});
			$('#m3').colorbox({iframe:true, width:"900px", height:"500px"});
			$('#m4').colorbox({iframe:true, width:"400px", height:"600px"});

			$('a.folderGrande , #m1').colorbox({iframe:true, scalePhotos: false, scrolling: true, width:"1000px", height:"600px"});
			$('a.folderPequeno').colorbox({iframe:true, scalePhotos: false, scrolling: true, width:"520px", height:"600px"});


		});

