/* Office time Day Night trigger */
$(function() {
	 $.get('/officetime.php', function(data) {
	  if(data == false)
	  {
	  	$("body").addClass("night").removeClass("day");
		$("#content-container").addClass("night").removeClass("day");
	  } 
	});
});

function popupform (element, title, w,h){
	
	Shadowbox.open({
        content:    $(element).html(),
        player:     "html",
        title:      title,
        height:     h,
        width:      w,
		options: { enableKeys: false }
    });

}

