$(document).ready(function()
{
	// - lightbox
	$.Lightbox.construct({
		show_linkback: false,
		colorBlend: true,
		opacity: 0.6,
		text: {
			image: 'Photo',
			close: 'Close',
			help: {
				close: '', 
				interact: ''
			}
		},
		files: {
			js: {
				lightbox:	'/scripts/jquery.lightbox.packed.js',
				colorBlend:	'/scripts/jquery.color.packed.js'
			},
			css: {
				lightbox:	'/styles/jquery.lightbox.packed.css'
			},
			images: {
				prev:		'/images/lightbox/prev.gif',
				next:		'/images/lightbox/next.gif',
				blank:		'/images/lightbox/blank.gif',
				loading:	'/images/lightbox/loading.gif'
			}
		}
	});

	$(".poster").click(function() {
		$(this).lightbox({
			start: true,
			events: false
		}); 
		return false;
	});
	
	// - calendar
	var t = $('div#datepicker').attr('default').split('-');
	var d = t[0] ? new Date(t[0], t[1]-1, t[2]) : '';
	$('div#datepicker').datepicker({ 
		dateFormat: 'yy-mm-dd',
		defaultDate: d,
		yearRange: '-00:+01',
		numberOfMonths: 1,
		firstDay: 6,
		minDate: 0,
		maxDate: +31,
		onSelect: function (dateText, inst) {
			location.href = $(this).attr('rel') + '/' + dateText;
		},
	});
	$('#week').hide();
});