$(document).ready(function(){
//						   LatestNews, Articles, FeedLinks
						   	if($('div.LatestNews').height() > $('div.Articles').height()) {
							   $('div.Articles').css({
												 'height':$('div.LatestNews').height()
												 });
							}
							else if($('div.Articles').height() > $('div.LatestNews').height()) {
							   $('div.LatestNews').css({
												 'height':$('div.Articles').height()
												 });
							}
							
						   	if($('div.SundayProgramme').height() > $('div.BMAAw').height()) {
							   $('div.BMAAw').css({
												 'height':$('div.SundayProgramme').height()
												 });
							}
							else if($('div.BMAAw').height() > $('div.SundayProgramme').height()) {
							   $('div.SundayProgramme').css({
												 'height':$('div.BMAAw').height()
												 });
							}
							
						   	if($('div.FeedLinks').height() > $('div.Articles').height()) {
							   $('div.Articles').css({
												 'height':$('div.FeedLinks').height()
												 });
							}
							else if($('div.Articles').height() > $('div.FeedLinks').height()) {
							   $('div.FeedLinks').css({
												 'height':$('div.Articles').height()
												 });
							}
						   	if($('div.representatives').height() > $('div.othermembers').height()) {
								$('div.othermembers').css({
												 'height':$('div.representatives').height()
												 });
							}
							else if($('div.representatives').height() < $('div.othermembers').height()) {
								$('div.representatives').css({
												 'height':$('div.othermembers').height()
												 });
							}						
							$('a.box').mouseover(function (){
															$(this).css({
																		 'background':'#DDDDDD',
																		 'border':'1px solid #444',
																		 'color':'#444444'
																		 });
															});
							$('a.box').mouseout(function(){
															$(this).css({
																		 'background':'#DEDEDE',
																		 'border':'1px solid #D4D4D4',
																		 'color':'#777777'
																		});
															});
							$('.Album').mouseover(function(){
														   $(this).css({
																	   'background':'#F4F4F4',
																	   'cursor':'pointer'
																	   });
														   });
							$('.Album').mouseout(function(){
														   $(this).css({
																	   'background':'none'
																	   });
														  });
							$('.SideWrapper ul li').mouseover(function (){
															$(this).css({
																		'background':'#DDD',
																		'border':'1px solid #FAFAFA',
																		'border-top':'none'
																		 });
															});
							$('.SideWrapper ul li').mouseout(function (){
															$(this).css({
																		'-moz-border-radius':'4px',
																		'background':'none',
																		'border-bottom':'1px solid #FAFAFA',
																		'border-left':'1px solid #F4F4F4',
																		'border-right':'1px solid #F4F4F4',
																		'display':'block',
																		'font-size':'12px',
																		'height':'22px',
																		'line-height':'30px',
																		'overflow':'hidden',
																		'padding':'0 4px 6px'
																		 });
															});							
							});