setInterval(function () {
	var d = new Date;
	angleSec = (d.getSeconds() * 6);
	$("#sec").rotate(angleSec);
	angleMin = (d.getMinutes() * 6);
	$("#min").rotate(angleMin);
	angleHour = ((d.getHours() * 5 + d.getMinutes() / 12) * 6);
	$("#hour").rotate(angleHour);
}, 1000); 

$(function($) {
    $('.jclock').jclock();
});


$(document).ready(function(){
	
	$(".popup_1").colorbox({width:"600px", inline:true, href:"#popup_1"});
	$(".popup_4").colorbox({width:"700px", inline:true, href:"#popup_4"});
	$(".popup_5").colorbox({width:"700px", inline:true, href:"#popup_5"});

	$(function() {
		$( "#datepicker1" ).datepicker({
			showOn: "button",
			dateFormat: 'yy-mm-dd',
			buttonImage: "../../template/img/img_34.gif",
			buttonImageOnly: false,
			changeMonth: true,
			changeYear: true
		});
	});
	$(function() {
		$( "#datepicker2" ).datepicker({
			showOn: "button",
			dateFormat: 'yy-mm-dd',
			buttonImage: "../../template/img/img_34.gif",
			buttonImageOnly: false,
			changeMonth: true,
			changeYear: true
		});
	});
});

