/*colocar borda na imagem*/
$(document).ready(function(){
	$(".imagem").mouseover(function () {
		$("div:first",this).show();
	});
	$(".imagem").mouseout(function () {
		$("div:first",this).hide();
	});

$(function()
{
	$('.date-pick').datePicker();
});

});