$(document).ready(function(){
	$('div[@id="featuredProject"], div[@id="whatsOnSectionLinker"]').mouseover(function(){$(this).addClass("hover");});
	$('div[@id="featuredProject"], div[@id="whatsOnSectionLinker"]').mouseout(function(){$(this).removeClass("hover");});
	$('div[@id="featuredProject"], div[@id="whatsOnSectionLinker"]').mouseup(
															function(e){
																// Follow first link in LI
																var toCheck = $('a',this).get(0);
																window.location = toCheck.href;
																e.cancelBubble = true;
																e.stopPropagation();
															}
														);
	$('div[@class="brown small left"], div[@id="NecklaceSectionLinker"]').mouseover(function(){$(this).addClass("hover");});
	$('div[@class="brown small left"], div[@id="NecklaceSectionLinker"]').mouseout(function(){$(this).removeClass("hover");});
	$('div[@class="brown small left"], div[@id="NecklaceSectionLinker"]').mouseup(
															function(e){
																// Follow first link in LI
																var toCheck = $('a',this).get(0);
																window.location = toCheck.href;
																e.cancelBubble = true;
																e.stopPropagation();
															}
														);
});

