( function($) {
$(document).ready(function() {	
		
				//Click and Hover events for thumbnail list
				$("#click-through-subheadings .subheading").mouseover(function(){ 
					$("#click-through-subheadings .subheading").removeClass('highlighted');
					$("#click-through-content .click-content").removeClass('active');
					var subheadingId = $(this).attr("id");
					var contentId = '#'+subheadingId + "-content";
					$(this).addClass('highlighted');
					$(contentId).addClass('active');
				}) 
				
			});//Close Function
} )( jQuery );
