$(document).ready(function() {	  
						   
	$(".cbox").stop(true, true).animate({opacity:0.85}, {queue:false,duration:500});
      $('.cbox').hover(
        function () {
          $(this).stop(true, true).animate({opacity:1}, {queue:false,duration:500});
        }, function () {
          $(this).stop(true, true).animate({opacity:0.85}, {queue:false,duration:500});
        });
 
   $(".lmenu").hover(
        function () {
          $(this).stop(true, true).animate({color:"#C8A35F"}, 200);
        }, function () {
          $(this).stop(true, true).animate({color:"#000"}, 200);
        });
   
      $(".cpie a").hover(
        function () {
          $(this).stop(true, true).animate({color:"#a48141"}, 200);
        }, function () {
          $(this).stop(true, true).animate({color:"#C8A35F"}, 200);
        });
	     
      $(".lmeteo").hover(
        function () {
          $(this).stop(true, true).animate({color:"#a48141"}, 200);
        }, function () {
          $(this).stop(true, true).animate({color:"#C8A35F"}, 200);
        });
	  
	  $(".slink").stop(true, true).animate({color:"#000"}, 200);
	 $(".slink").hover(
        function () {
          $(this).stop(true, true).animate({color:"#a48141"}, 200);
        }, function () {
          $(this).stop(true, true).animate({color:"#000"}, 200);
        });


 $("#m1").mouseover(function(){
    $(".cmintro").slideDown(900);
   });
  $("#m2,#m3,.foto").mouseover(function(){
    $(".cmintro").slideUp(300);
   });
  
  $("#m2").mouseover(function(){
    $(".cmmarina").slideDown(900);
   });
  $("#m1,#m3,.foto").mouseover(function(){
    $(".cmmarina").slideUp(300);
   });
 
 $("#m3").mouseover(function(){
    $(".cmhosp").slideDown(900);
   });
  $("#m1,#m2,.foto").mouseover(function(){
    $(".cmhosp").slideUp(300);
   });

    });
