// JS document
// Initial set up of page
// Designer: Matt Bentley
// Email: matt.bentley@guardian.co.uk

$(document).ready(function(){

	//Navigation
	$('#nav ul li').not('#breadcrumbs ul li').hover(
		function() { $('ul', this).show(); },
		function() { $('ul', this).hide(); });
	
	$('#footer-links').corner('7px');
	$('.magazine').corner('7px');
	$('.weekly-one').corner('7px');
	$('.weekly-two').corner('7px');
	$('.encyclopedia').corner('7px');
});

