jQuery(document).ready(function($){

	$(".feature-theme, .hot-topic").hover(
	 	function() {
			$(this).addClass("hover");
		},
		function() {
			$(this).removeClass("hover");
		}
	);
	
	$(".feature-theme").hover(
	 	function() {
			$(this).addClass("feature-theme-hover");
		},
		function() {
			$(this).removeClass("feature-theme-hover");
		}
	);
	
	$(".hot-topic").hover(
	 	function() {
			$(this).addClass("hot-topic-hover");
		},
		function() {
			$(this).removeClass("hot-topic-hover");
		}
	);


});
