/**
* Handle the logic function for JS in home
*
*/
$(document).ready(function() {
	
	//function to load the countdown
	function getCountdown(url) {
		$.getJSON(url, function(data) {
			if(data.status === 'success') {
				$('#days').html(data.result.days);
				$('#hours').html(data.result.hours);
				$('#minutes').html(data.result.minutes);
			}
		});
	}

	setInterval(function() {
		getCountdown('http://lovelymonday.com/api/countdown/show.json')
	}, 1000);

	//setup the modal message
	$("#dialog-message").hide();

	$('#about-us').click(function() {
		$("#dialog-message").dialog({
			modal: true,
			width: 500,
			height: 270,
			buttons: {
				Ok: function() {
					$( this ).dialog( "close" );
				}
			}
		});
		return false;
	});
});
