$(document).ready(function(){
	$('#slider1').anythingSlider({  
		toggleControls : true,
		width: '980px',
		height: '400px',
		buildNavigation: false,
		easing: 'easeInOutExpo',
 		autoPlay: true,
 		delay: 5000,
 		animationTime: 1500		
	});
	
	if($('#sombra_rent').length){
		$('#mercedes-e').show();
		$('#mercedes-e').addClass('active');
		$('input[type="radio"]:first').attr('checked', 'checked');	
		$('input[type="radio"]').change(function(){
			var idFoto = $(this).val();
			$('#'+idFoto).show();
			$('.active').stop(true, true).fadeOut(700, function(){	
				$('.active').removeClass('active');			
				$('#'+idFoto).addClass('active');
			});
		});
	}	
	
	$("a.fancybox").fancybox({
		'autoDimensions': false,		
		width: 980,
		height: 600,
		overlayColor: '#c63637',
		padding: '30',
		centerOnScroll: true,
		titleShow: false	
	});
	
	$("#logo_inicianet").attr('target', '_blank');
	
	Cufon.replace('h2', {
		fontFamily: 'Varela Round'
	});
});

//this one line will disable the right mouse click menu  
     $(document)[0].oncontextmenu = function() { 
		alert("Esta web posee derechos de autor");      
      return false;}  
