$(document).ready(function(){

            $("#oms1").fadeOut(1);
			$("#oms2").fadeOut(1);
			$("#oms3").fadeOut(1);

	$("#entra").mouseenter(function(){
		$("#enter").stop(true,true).animate({bottom:"5%"},{duration: 600, easing: "easeOutElastic"});
				$(this).animate({bottom:"+=14px"},{duration: 1200, easing: "easeOutElastic"});
			})
		.mouseleave(function(){
			$(this).animate({bottom:"-=14px"},{duration: 600, easing: "easeOutElastic"});
		});
	
	
	$("#enter").mouseenter(function(){
		$("#entra").stop(true,true).animate({bottom:"5%"},{duration: 600, easing: "easeOutElastic"});
			$(this).animate({bottom:"+=14px"},{duration: 1200, easing: "easeOutElastic"});
		})
		.mouseleave(function(){
			$(this).animate({bottom:"-=14px"},{duration: 600, easing: "easeOutElastic"});
		}); 
		
		
	$("#btn1").mouseenter(function(){
			$("#main").fadeOut(1);
			$("#oms2").fadeOut(1);
			$("#oms3").fadeOut(1);
			$("#oms1").fadeIn(1);
		})
		.mouseleave(function(){
			$("#main").fadeIn(1);
			$("#oms1").fadeOut(1);
		}); 		
		
	$("#btn2").mouseenter(function(){
			$("#main").fadeOut(1);
			$("#oms2").fadeIn(1);
		})
		.mouseleave(function(){
			$("#main").fadeIn(1);
			$("#oms2").fadeOut(1);
		}); 	
		
	$("#btn3").mouseenter(function(){
			$("#main").fadeOut(1);
			$("#oms3").fadeIn(1);
		})
		.mouseleave(function(){
			$("#main").fadeIn(1);
			$("#oms3").fadeOut(1);
		}); 		
		
		
	$("#btn1").click(function(){
		   $.fancybox({
				'width': '60%',
				'height': '90%',
				'autoScale': true,
				'transitionIn': 'fade',
				'transitionOut': 'fade',
				'type': 'iframe',
				'href': 'index1.html'
			});
		});				

	$("#btn2").click(function(){
		   $.fancybox({
				'width': '60%',
				'height': '90%',
				'autoScale': true,
				'transitionIn': 'fade',
				'transitionOut': 'fade',
				'type': 'iframe',
				'href': 'index2.html'
			});
		});		
		
	$("#btn3").click(function(){
		   $.fancybox({
				'width': '60%',
				'height': '90%',
				'autoScale': true,
				'transitionIn': 'fade',
				'transitionOut': 'fade',
				'type': 'iframe',
				'href': 'index3.html'
			});
		});				

});

