//<script language='JavaScript'>

	$(function()
	{
		$('body').css({
			fontFamily: 'Verdana,Arial,Helvetica,Sans-Serif',
			fontSize: '14px',
			padding: '0',
			margin: '0'
		});

		$('#monacolife').css({
			width: '1020px',
			margin: '0 auto'
		});

		$('#monacolife #main').css({
			marginTop: '10px',
			borderTop: '1px solid #aaa',
			paddingTop: '5px'
		});

		$('div#centre').css({
			float: 'left',
			width: '598px',
			color: '#0F1419',
			borderRight: '1px solid #ccc'
		});

		$('div#centre div#content').css({
			margin: '10px',
			paddingRight: '10px'
		});

		$('.whiteonred').css({
			color: 'white',
			backgroundColor: '#de2110'
		});

		// Maintain the date.
		setInterval(function(){
			$('#mission #missionright #date').load('index.php', {
				ajax: '1',
				module: 'main',
				date: '1'});
		}, 10000);

		///////////////////////////////////////////////////////////////////////
		// The masthead
		$('#masthead').css({
			margin: '10px 0'
		});

		$('#masthead #logoBox').css({
			float: 'left'
		});

		$('#masthead #logo').css({
		});

		$('#masthead #date').css({
			//width: '286px',
			textAlign: 'center',
			fontSize: '11px',
			marginBottom: '10px'
		});

		$('#masthead #pub').css({
			//width: '286px',
			textAlign: 'center',
			fontSize: '12px'
		});

		$('#masthead #ad').css({
			float: 'right'
		});

		$('.clear').css({
			clear: 'both',
			height: '0px'
		});

		///////////////////////////////////////////////////////////////////////
		// The navigator
		$('#navigator').css({
			marginLeft: '10px',
			marginRight: '10px',
			paddingLeft: '10px',
			fontSize: '16px',
			fontWeight: 'bold'
		});

		$('#navigator .lpad').css({
			marginRight: '8px'
		});

		$('#navigator .navitem').css({
			display: 'inline',
			overflow: 'hidden',
			textAlign: 'center'
		});

		$('#navigator .separator').css({
			margin: '0 8px',
			borderLeft: '1px solid white'
		});

		///////////////////////////////////////////////////////////////////////
		// Maintain the date.
		setInterval(function(){
			$('#masthead #logoBox #date').load('index.php', {
				ajax: '1',
				module: 'main',
				date: '1'});
		}, 10000);

		///////////////////////////////////////////////////////////////////////
		// The footer.
		$('#footer').css({
			clear: 'both',
			height: '20px',
			fontSize: '10px',
			background: '#ff0000',
			color: '#ffffff',
			textAlign: 'right',
			paddingTop: '4px',
			marginTop: '30px'
		});

		///////////////////////////////////////////////////////////////////////
		// Styles for hyperlinks.
		$('a').css({
			color: '#003366',
			textDecoration: 'none'
		});

		$('a').hover(
			function() {
				$(this).css({
					color: '#335599',
					textDecoration:'underline'
				});
			},
			function() {
				$(this).css({
					color: '#003366',
					textDecoration:'none'
				});
			}
		);

		$('.whiteonred a').css({
			color: '#ffffff',
			textDecoration: 'none'
		});

		$('.whiteonred a').hover(
			function() {
				$(this).css({
					color: '#ffcccc',
					textDecoration:'underline'
				});
			},
			function() {
				$(this).css({
					color: '#ffffff',
					textDecoration:'none'
				});
			}
		);

		///////////////////////////////////////////////////////////////////////
		// Styles for the pager.
		$('.pager').css({
			textAlign: 'center'
		});

		$('.pagerBold').css({
			color: '#88c',
			fontWeight: 'bold'
		});
	});

//</script>

