<!-- BEGIN highlight boxtable -->			
$(document).ready(function() {
  $('div[class^="block"]').each(function(i,e) 
  	{
  	var totala=$(e).find('a');
  	
  	if (totala.length==1) 
  		{
  		$(e).mouseover(function() {$(e).attr('class', $(e).attr('class') + "Hover");});
  		$(e).mouseout(function() {$(e).attr('class', $(e).attr('class').replace('Hover', ''));});
  		$(e).click(function() {window.location=totala[0];});
  		}
});
});

$(document).ready(function() {
  $('td[class^="block"]').each(function(i,e) 
  	{
  	var totala=$(e).find('a')
  	if (totala.length==1) 
  		{
  		$(e).mouseover(function() {$(e).attr('class', $(e).attr('class') + "Hover");});
  		$(e).mouseout(function() {$(e).attr('class', $(e).attr('class').replace('Hover', ''));});
  		$(e).click(function() {window.location=totala[0];});
  		}
});
});
<!-- END highlight boxtable -->

<!-- BEGIN highlight articleBodies -->
$(document).ready(function() {
  $('#articleBodies div[class^="articleBody"]').each(function(i,e) 
  	{
  	var totala=$(e).find('a');
	$(e).mouseover(function() {$(e).toggleClass("articleBodyHover");});
	$(e).mouseout(function() {$(e).toggleClass("articleBodyHover");});
  		
  	if (totala.length==1) 
  		{
  		$(e).click(function() {window.location=totala[0];});
  		}
	});
});
<!-- END highlight articleBodies -->

<!-- BEGIN highlight thumbnailBodies -->
$(document).ready(function() {
  $('#thumbnailBodies div[class^="thumbnailBody"]').each(function(i,e) 
  	{
  	var totala=$(e).find('a');
	$(e).mouseover(function() {$(e).toggleClass("thumbnailBodyHover");});
	$(e).mouseout(function() {$(e).toggleClass("thumbnailBodyHover");});
  		
  	if (totala.length==1) 
  		{
  		$(e).click(function() {window.location=totala[0];});
  		}
	});
});
<!-- END highlight thumbnails -->

<!-- BEGIN highlight xsellBodies -->
$(document).ready(function() {
  $('#xsellBodies div[class^="xsellBody"]').each(function(i,e) 
  	{
  	var totala=$(e).find('a');
	$(e).mouseover(function() {$(e).toggleClass("xsellBodyHover");});
	$(e).mouseout(function() {$(e).toggleClass("xsellBodyHover");});
  		
  	if (totala.length==1) 
  		{
  		$(e).click(function() {window.location=totala[0];});
  		}
	});
});
<!-- END highlight xsellBodies -->

