/* No custom JS */
jQuery(document).ready(function() {
  
	//Hiding the Content Titles per client request.
	jQuery('#content.home h2.entry-title, #content.sub h2.entry-title').hide();

	//Hiding the navigation bar on the homepage
	jQuery('body.home #header .navigation').hide();
	
	//Adding dynamic markup for the references list
	jQuery('ul.articles li:even').addClass('even');
	jQuery('ul.articles li:odd').addClass('odd'); 

});
