$(document).ready(function() {	

	window.onload = function(){
		$('html,body').animate({ scrollTop : $('#content').offset().top },1500);
	};

	$('#dataAgenda').focus(function(){
		$(this).calendario({ 
			target:'#dataAgenda'
		});
	});
	
	$('#dataAgenda2').focus(function(){
		$(this).calendario({ 
			target:'#dataAgenda2'
		});
	});
	
	$("img.a").hover(
	function() {
		$(this).stop().animate({"opacity": "0"}, "fast");
		//$(this).css('display', 'none');
	},
	function() {
		$(this).stop().animate({"opacity": "1"}, "fast");
		//$(this).css('display', 'block');
	});
	
	
});//Close Function
