$(document).ready(function()
{
	//$("#datepicker").datepicker({changeMonth: true,  changeYear: true ,minDate: new Date(), dateFormat: 'yy-mm-dd' });
	content_url = base_url+'ajax/day_event_nonloggedin';
	var CAL_STYLE = { width: 250, padding: 5, background: '#000000', color: 'white', textAlign: 'left', border: {width: 7,radius: 5, color: '#000000'}, tip: 'rightTop', name: 'dark' };
	var CAL_POSITION = { corner: { target: 'leftMiddle', tooltip: 'rightTop'  } };
	
	$('.ui-datepicker-calendar .ui-state-default').live('mouseover', function()
	{
		var day = $(this).text();
		var month = $('.ui-datepicker-month').text();
		var year = $('.ui-datepicker-year').text();		
		var date = day+'-'+month+'-'+year
		
		$(this).qtip(
		{
			overwrite: true,
			content: {
				url: content_url,
				data:{date:date},
				method:'post'
				},
			show:{ready: true },
			position: CAL_POSITION,
			style: CAL_STYLE,
			hide: { fixed: true },
			solo:false
			
		})
	})	
	
});
