jQuery(document).ready(function(){
	jQuery('#menu-top-navigation > li:not(:has(ul))').css({'padding-bottom':'0'});
	jQuery('#menu-top-navigation > li:not(:has(ul)) a').addClass('jQuery-link');
	jQuery('#menu-top-navigation > li:not(:has(ul)) a').hover(
	function(){
		jQuery(this).addClass('jQuery-link-hover');
	},
	function(){
		jQuery(this).removeClass('jQuery-link-hover');
	});
  jQuery('.callout:nth-child(3n)').css({'margin-right':'0px'});
});
