$(function() {

	$.getScript('/stores/daydreamuk/config.txt', function() {
		$('#subjects li a').each(function() {
		    if(Configure.Colors.Subjects[$(this).text()]) {
			    $(this).css( 'background-color', '#' + Configure.Colors.Subjects[ $(this).text() ] );
			}
		});
	});
	
	// alert($('#breadcrumbs li:eq(1) a').text());
		
	
	$('h1.round, #subjects li a').corner('3px');
	
});