$(function(){
	// init input hints
	$('input[title!=""]').hint();
	$('textarea[title!=""]').hint();
	
	$('.birthday-date').datepicker({
	    changeMonth: true,
	    changeYear: true,
	    yearRange: '1910:2005'
	});

	$('.date-picker').datepicker({
	});
	
	
	var leftPos = $(window).width()/2 - 614;
	$('#minimap').css({'left': leftPos});
	
	$(window).resize(function(){
		var leftPos = $(window).width()/2 - 614;
		$('#minimap').css({'left': leftPos});
	});
});
	
