$(function() {
	$(".datepicker").datepicker();
	$(".header, .footer, h1").addClass('ui-widget-header ui-helper-clearfix');
	$("input:submit, button, .button").button();
	$('menu a img:not([class=selected])').hover(
		function() {
			$(this).attr('src', $(this).attr('src').replace('/p/', '/a/'));
		},
		function() {
			$(this).attr('src', $(this).attr('src').replace('/a/', '/p/'));
		}
	);;
});
