$(document).ready(function(){
	
	/*
	$("div.store-item").addClass("border-right");
	$("div.store-item").addClass("border-bottom");
	$("div.store-item:nth-child(4n)").removeClass("border-right");
	$("div.store-item:gt(11)").removeClass("border-bottom");
	*/
	
	$("a.about_button").hover(function() {
		
		$("a.about_button").removeClass("about_button_inactive");
		$("a.about_button").addClass("about_button_active");
		$("a.fun_button").addClass("fun_button_inactive");
		
		}, function(){
		
		$("a.about_button").removeClass("about_button_active");
		$("a.fun_button").removeClass("fun_button_inactive");
		
	});
	
	
	$("a.fun_button").hover(function() {
		
		$("a.fun_button").removeClass("fun_button_inactive");
		$("a.fun_button").addClass("fun_button_active");
		$("a.about_button").addClass("about_button_inactive");
		
		}, function(){
		
		
		$("a.fun_button").removeClass("fun_button_active");
		$("a.about_button").removeClass("about_button_inactive");
		
	});
	
	
});