// JavaScript Document
	$(document).ready(function() {
		$(".obligado").each( 
				function(index)
				{
					$(this).append( "<sup class='campoobligado'>*</sup>" );
				}
		);
							
		$(".lightbox").fancybox({ 
			'hideOnContentClick': true,
			'overlayShow': true
		});
		
		var midate = new Date();
		
		var dates = $("#FechaLlamada").datepicker({
			dateFormat: 'dd-mm-yy',
			firstDay: 1,
			minDate:midate
		});
		
		$(".frame").fancybox({
			'titlePosition'		: 'inside',
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'ocuVid'            : true
		});
							
		if ( $("#map").length > 0 )
		{
			ini();
		}
		
		$(".proyecto").each(function(index){
			$(this).hover(
			function(){$(this).children(".mascara").stop().animate({"top":-50,"left":0}, 300);},
			function(){$(this).children(".mascara").stop().animate({"top":216,"left":0}, 600);});
		});			
	});

