$(window).load(function(){
	$(".example5").colorbox();
	$("a[rel='example1']").colorbox();
});
$(function(){
	$('.tipo_data').each(
	function() {
		var name = $(this).attr('id');    			
		var week = $(this).is('.week') ? true : false;
		var time = $(this).is('.time') ? true : false;
    	$(document.createElement('img')).attr({
			id: 'btdata_' + name,
			src: '/adm/img/icon_data.gif',
			align: 'top',
			'class': 'calendar_img',
			alt: 'Abrir Calendário'
		}).insertAfter($(this));                
		Calendar.setup({
			inputField : name,
			ifFormat : dateFormat, 
			showsTime : time, 
			button : "btdata_" + name, 
			singleClick : true, 
			step : 1, 
			weekNumbers : week
		});
    });
});
