$(document).ready(function () {

	$('a.theme_btn').each(function(btn_index) {
	    
		$(this).mouseover(function() {
			
			$('div.theme_tab').each(function(tab_index) {
				if (tab_index == btn_index) {
					$(this).css('display', 'block');
				}
			});
			
		});
		
		$(this).mouseout(function() {
						
			$('div.theme_tab').each(function(tab_index) {
				if (tab_index == btn_index) {
					$(this).css('display', 'none');
				}
			});
			
		});
	
	});
	
});
