$(document).ready(function() {
	$('.tabs').tabs();
	
	$(':button, :submit').addClass('button');
	
	$('.datePicker').livequery(function() {
		$(this).datepicker({ 
		    buttonImageOnly: true,
		    showOn: "both"
		});
	});
	
	$(".startDate, .endDate").livequery(function() {
		$(this).datepicker({ 
		    beforeShow: customRange, 
		    showOn: "both", 
		    buttonImageOnly: true
		});
	});
	// 
	// $('a[@rel*=lightbox]').livequery(function() {
	// 	$(this).lightBox({fixedNavigation:true});
	// });
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
			animationSpeed: 'normal', /* fast/slow/normal */
			padding: 40, /* padding for each side of the picture */
			opacity: 0.35, /* Value betwee 0 and 1 */
			showTitle: false, /* true/false */
			allowresize: false /* true/false */
	});
	
});

function customRange(input) { 
    return {minDate: (input.id == "endDate" ? $("#startDate").datepicker("getDate") : null), 
        maxDate: (input.id == "startDate" ? $("#endDate").datepicker("getDate") : null)};
}