$(function() {
	
	$('[placeholder]').placeholder();
	
	$('#title').lettering();
	
	/*
	 * Calendar
	 */

	$('#calendar').datepicker({
		dateFormat: 'dd/mm/yy',
		onSelect: function(dateText) {
			$('#day-events').load('?date=' + dateText + ' #day-events > *');
		}
	});
	
	/*
	 * Sub-menus
	 */
	 
	 $('.sub-menu').resize(function() {
	 	$(this).css('left', $(this).parent().offset().left - (($(window).width() - $('body').width()) / 2));
	 }).resize();
	 
	 $('#menu a').hover(function() {
	 	if($('body').width() > 800) {
		 	$(this).nextAll('.sub-menu').show().hover(function() {
		 		$(this).show();
		 	}, function() {
		 		$(this).css('display', '');
		 	});
		 }
	 }, function() {
	 	if($('body').width() > 800) {
		 	$(this).nextAll('.sub-menu').css('display', '');
		 }
	 });
});
